diff --git a/web/ui/dashboard/src/app/private/components/config-button/config-button.component.html b/web/ui/dashboard/src/app/private/components/config-button/config-button.component.html index cc7c05dd12..32a9bba989 100644 --- a/web/ui/dashboard/src/app/private/components/config-button/config-button.component.html +++ b/web/ui/dashboard/src/app/private/components/config-button/config-button.component.html @@ -1,8 +1,8 @@ diff --git a/web/ui/dashboard/src/app/private/components/create-endpoint/create-endpoint.component.ts b/web/ui/dashboard/src/app/private/components/create-endpoint/create-endpoint.component.ts index 2f74ccb40c..a66ada58b4 100644 --- a/web/ui/dashboard/src/app/private/components/create-endpoint/create-endpoint.component.ts +++ b/web/ui/dashboard/src/app/private/components/create-endpoint/create-endpoint.component.ts @@ -75,7 +75,10 @@ export class CreateEndpointComponent implements OnInit { token: string = this.route.snapshot.params.token; @Input('endpointId') endpointUid: string = this.route.snapshot.params.id; enableMoreConfig = false; - configurations = [{ uid: 'http_timeout', name: 'Timeout ', show: false }]; + configurations = [ + { uid: 'http_timeout', name: 'Timeout ', show: false }, + { uid: 'owner_id', name: 'Owner ID ', show: false } + ]; endpointCreated: boolean = false; endpointSecret?: SECRET; private rbacService = inject(RbacService); @@ -92,13 +95,7 @@ export class CreateEndpointComponent implements OnInit { async ngOnInit() { if (this.type !== 'portal') - this.configurations.push( - { uid: 'owner_id', name: 'Owner ID ', show: false }, - { uid: 'rate_limit', name: 'Rate Limit ', show: false }, - { uid: 'alert_config', name: 'Notifications', show: false }, - { uid: 'auth', name: 'Auth', show: false }, - { uid: 'signature', name: 'Signature Format', show: false } - ); + this.configurations.push({ uid: 'rate_limit', name: 'Rate Limit ', show: false }, { uid: 'alert_config', name: 'Notifications', show: false }, { uid: 'auth', name: 'Auth', show: false }, { uid: 'signature', name: 'Signature Format', show: false }); if (this.endpointUid && this.editMode) this.getEndpointDetails(); if (!(await this.rbacService.userCanAccess('Endpoints|MANAGE'))) this.addNewEndpointForm.disable(); } diff --git a/web/ui/dashboard/src/app/public/app/app.component.html b/web/ui/dashboard/src/app/public/app/app.component.html index f91578f02f..7d94e17acb 100644 --- a/web/ui/dashboard/src/app/public/app/app.component.html +++ b/web/ui/dashboard/src/app/public/app/app.component.html @@ -66,7 +66,7 @@

Endpoints

  • -