Skip to content

Commit 0d2a592

Browse files
system is not incuded in change all dbs menus
- system is filtered out of the list that populates db change all dbs Related to #1048
1 parent b581e2c commit 0d2a592

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/dashboard/header/DashboardHeader.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ export const NeoDashboardHeader = ({
132132
let tmp = standaloneSettings.standaloneDatabaseList.split(',').map((x) => x.trim());
133133
result = result.filter((value) => tmp.includes(value));
134134
}
135+
result = result.filter((value) => result.includes(value) && value !== 'system');
135136
setDatabases(result);
136137
});
137138
}

0 commit comments

Comments
 (0)