Skip to content

Commit d702ced

Browse files
Merge pull request #1404 from RedisInsight/fe/bugfix/RI-3828_RediStack_db_info
#RI-3828 - Connection page in Redis Stack has no DB info
2 parents ab61a48 + b10cf13 commit d702ced

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redisinsight/ui/src/pages/redisStack/components/edit-connection/EditConnection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const EditConnection = () => {
5555
try {
5656
setState(DEFAULT_STATE)
5757
isApiSubscribed = true
58-
const { data, status } = await apiService.get<Instance>(`${ApiEndpoints.INSTANCE}/${server.fixedDatabaseId}`)
58+
const { data, status } = await apiService.get<Instance>(`${ApiEndpoints.DATABASES}/${server.fixedDatabaseId}`)
5959
if (isStatusSuccessful(status) && isApiSubscribed) {
6060
setState({ ...state, loading: false, data })
6161
}

0 commit comments

Comments
 (0)