diff --git a/adminforth/commands/createApp/templates/index.ts.hbs b/adminforth/commands/createApp/templates/index.ts.hbs index a6dcf453..734d99a2 100644 --- a/adminforth/commands/createApp/templates/index.ts.hbs +++ b/adminforth/commands/createApp/templates/index.ts.hbs @@ -13,7 +13,6 @@ export const admin = new AdminForth({ rememberMeDays: 30, loginBackgroundImage: 'https://images.unsplash.com/photo-1534239697798-120952b76f2b?q=80&w=3389&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', loginBackgroundPosition: '1/2', - loginPromptHTML: "Use email adminforth and password adminforth to login", }, customization: { brandName: "{{appName}}", @@ -23,6 +22,7 @@ export const admin = new AdminForth({ datesFormat: 'DD MMM', timeFormat: 'HH:mm a', showBrandNameInSidebar: true, + emptyFieldPlaceholder: '-', styles: { colors: { light: { diff --git a/adminforth/package.json b/adminforth/package.json index 84a53a9a..5168b9fa 100644 --- a/adminforth/package.json +++ b/adminforth/package.json @@ -20,7 +20,7 @@ "rollout-doc": "cd documentation && npm run build && npm run deploy", "docs": "typedoc", "--comment_postinstall": "postinstall executed after package installed in other project package and when we do npm ci in the package", - "postinstall": "if test -d ./dist/spa/; then cd ./dist/spa/ && npm --version && npm ci && echo 'installed spa dependencies'; fi", + "postinstall": "if test -d ./dist/spa/; then cd ./dist/spa/ && npm ci && echo 'installed spa dependencies'; fi", "install-plugins": "cd ../plugins && sh install-plugins.sh", "install-adapters": "cd ../adapters && sh install-adapters.sh" },