Skip to content

Commit e2a46ca

Browse files
committed
fix: debug email address
1 parent fb6cdd2 commit e2a46ca

File tree

1 file changed

+2
-2
lines changed
  • spring-boot-admin-server-ui/src/main/frontend/shell

1 file changed

+2
-2
lines changed

spring-boot-admin-server-ui/src/main/frontend/shell/navbar.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ export default {
229229
data: () => ({
230230
showMenu: false,
231231
brand: '<img src="assets/img/icon-spring-boot-admin.svg"><span>Spring Boot Admin</span>',
232-
userName: '[email protected]',
232+
userName: '',
233233
csrfToken: null,
234234
csrfParameterName: null,
235235
currentLanguage: null
@@ -255,7 +255,7 @@ export default {
255255
},
256256
created() {
257257
this.brand = sbaConfig.uiSettings.brand;
258-
//this.userName = sbaConfig.user ? sbaConfig.user.name : null;
258+
this.userName = sbaConfig.user ? sbaConfig.user.name : null;
259259
this.availableLocales = AVAILABLE_LANGUAGES;
260260
this.csrfToken = readCookie('XSRF-TOKEN');
261261
this.csrfParameterName = sbaConfig.csrf.parameterName;

0 commit comments

Comments
 (0)