From fb2cee933cadb351f3a022740b022f9327b1fa28 Mon Sep 17 00:00:00 2001 From: Steven Zhang Date: Wed, 8 Apr 2026 15:38:08 -0700 Subject: [PATCH] #1179 [UI] 'Show advance setting' button is not displayed when creating user --- admin/webapp/websrc/app/common/api/auth-http.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/webapp/websrc/app/common/api/auth-http.service.ts b/admin/webapp/websrc/app/common/api/auth-http.service.ts index 766277e5..773aec09 100644 --- a/admin/webapp/websrc/app/common/api/auth-http.service.ts +++ b/admin/webapp/websrc/app/common/api/auth-http.service.ts @@ -31,7 +31,7 @@ interface LicenseResponse { } interface PublicPasswordProfileResponse { - pwd_profiles: PublicPasswordProfile; + pwd_profile: PublicPasswordProfile; } interface RoleResponse { @@ -213,7 +213,7 @@ export class AuthHttpService { getPublicPwdProfile(): Observable { return GlobalVariable.http .get(PathConstant.PUBLIC_PASSWORD_PROFILE) - .pipe(map(r => r.pwd_profiles)); + .pipe(map(r => r.pwd_profile)); } patchPwdProfile(profile: PasswordProfile): Observable {