This is an automated email from the ASF dual-hosted git repository. hulee pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/helix.git
commit efd74f27e65ae6911e28762b23837a7d457e2a70 Author: Yi Wang <[email protected]> AuthorDate: Tue Mar 12 12:47:04 2019 -0700 Fix helix-ui build failure due to wrong config reference RB=1592781 G=helix-reviewers A=lxia,hulee Signed-off-by: Hunter Lee <[email protected]> --- helix-front/client/app/app.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/helix-front/client/app/app.component.ts b/helix-front/client/app/app.component.ts index 4c691ae..1b31f6c 100644 --- a/helix-front/client/app/app.component.ts +++ b/helix-front/client/app/app.component.ts @@ -14,7 +14,6 @@ import { Angulartics2Piwik } from 'angulartics2'; import { UserService } from './core/user.service'; import { InputDialogComponent } from './shared/dialog/input-dialog/input-dialog.component'; import { HelperService } from './shared/helper.service'; -import {LDAP} from "../../server/config"; @Component({ selector: 'hi-root', @@ -88,7 +87,7 @@ export class AppComponent implements OnInit { .subscribe( isAuthorized => { if (!isAuthorized) { - this.helper.showError("You're not part of " + LDAP.adminGroup + " group or password incorrect"); + this.helper.showError("You're not part of helix-admin group or password incorrect"); } this.currentUser = this.service.getCurrentUser(); },
