Merge "fix: fix the pagination in the vpns pages" into stable/zed

This commit is contained in:
Zuul
2022-09-29 05:54:25 +00:00
committed by Gerrit Code Review
5 changed files with 20 additions and 0 deletions

View File

@@ -52,6 +52,10 @@ export class EndpointGroup extends Base {
return true;
}
get hasTab() {
return true;
}
get actionConfigs() {
if (this.isAdminPage) {
return adminConfigs;

View File

@@ -51,6 +51,10 @@ export class IKEPolicy extends Base {
return true;
}
get hasTab() {
return true;
}
get actionConfigs() {
if (this.isAdminPage) {
return adminConfigs;

View File

@@ -52,6 +52,10 @@ export class IPsecPolicy extends Base {
return true;
}
get hasTab() {
return true;
}
get actionConfigs() {
if (this.isAdminPage) {
return adminConfigs;

View File

@@ -45,6 +45,10 @@ export class IPsecSiteConnection extends Base {
return true;
}
get hasTab() {
return true;
}
get actionConfigs() {
if (this.isAdminPage) {
return adminConfigs;

View File

@@ -42,6 +42,10 @@ export class VPNGateway extends Base {
return t('vpn services');
}
get hasTab() {
return true;
}
get adminPageHasProjectFilter() {
return true;
}