Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion adminforth/commands/createApp/templates/index.ts.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <b>adminforth</b> and password <b>adminforth</b> to login",
},
customization: {
brandName: "{{appName}}",
Expand All @@ -23,6 +22,7 @@ export const admin = new AdminForth({
datesFormat: 'DD MMM',
timeFormat: 'HH:mm a',
showBrandNameInSidebar: true,
emptyFieldPlaceholder: '-',
styles: {
colors: {
light: {
Expand Down
2 changes: 1 addition & 1 deletion adminforth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down