Skip to content

Commit 5bfe076

Browse files
fix: FIT-645: Empty Data Manager is displayed when navigating via browser Back button from Settings page (#8397)
Co-authored-by: yyassi-heartex <[email protected]>
1 parent ca2e2f8 commit 5bfe076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/libs/datamanager/src/sdk/dm-sdk.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export class DataManager {
147147
constructor(config) {
148148
this.root = config.root;
149149
this.project = config.project;
150-
this.projectId = config.projectId;
150+
this.projectId = config.projectId ?? this?.project?.id;
151151
this.dataset = config.dataset;
152152
this.datasetId = config.datasetId;
153153
this.settings = config.settings;

0 commit comments

Comments
 (0)