Skip to content

Commit

Permalink
Fix for only displaying active databases in the sidebar (#698)
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsdejong authored Nov 21, 2023
1 parent 216d1d6 commit 190fb11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dashboard/DashboardThunks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export const loadDatabaseListFromNeo4jThunk = (driver, callback) => (dispatch: a
runCypherQuery(
driver,
'system',
'SHOW DATABASES yield name RETURN DISTINCT name',
'SHOW DATABASES yield name, currentStatus WHERE currentStatus = "online" RETURN DISTINCT name',
{},
1000,
() => {},
Expand Down

0 comments on commit 190fb11

Please sign in to comment.