Skip to content

Commit 3b80279

Browse files
authored
Merge pull request #217 from neo4j-labs/hotfix/alfredosBug
Database list Regression
2 parents c86c382 + bf6773e commit 3b80279

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dashboard/DashboardThunks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ export const loadDatabaseListFromNeo4jThunk = (driver, callback) => (dispatch: a
194194
try {
195195
runCypherQuery(driver, "system",
196196
"SHOW DATABASES yield name RETURN DISTINCT name",
197-
{}, {}, ["name"], 1000, () => { return }, (records) => {
197+
{}, 1000, () => {return }, (records) => {
198198
const result = records.map(r => {
199199
return r["_fields"] && r["_fields"][0];
200200
});

0 commit comments

Comments
 (0)