Browse Source

Merge pull request #5762 from nocodb/fix/default-dahsboard-path

fix: Set fallback dashboard path while creating config
pull/4798/head
mertmit 1 year ago committed by GitHub
parent
commit
219377d5df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nocodb/src/utils/nc-config/NcConfig.ts

2
packages/nocodb/src/utils/nc-config/NcConfig.ts

@ -126,6 +126,8 @@ export class NcConfig {
if (dashboardPath) {
ncConfig.dashboardPath = dashboardPath;
} else {
ncConfig.dashboardPath = '/dashboard';
}
try {

Loading…
Cancel
Save