@@ -27,7 +27,10 @@ import { StubContainer } from '@postgres.ai/shared/components/StubContainer'
27
27
import { PageSpinner } from '@postgres.ai/shared/components/PageSpinner'
28
28
import { icons } from '@postgres.ai/shared/styles/icons'
29
29
import { GatewayLink } from '@postgres.ai/shared/components/GatewayLink'
30
- import { ClassesType , RefluxTypes } from '@postgres.ai/platform/src/components/types'
30
+ import {
31
+ ClassesType ,
32
+ RefluxTypes ,
33
+ } from '@postgres.ai/platform/src/components/types'
31
34
32
35
import Actions from '../../actions/actions'
33
36
import { ConsoleBreadcrumbsWrapper } from 'components/ConsoleBreadcrumbs/ConsoleBreadcrumbsWrapper'
@@ -113,7 +116,7 @@ class JoeInstances extends Component<
113
116
Actions . setJoeInstancesProject ( orgId , 0 )
114
117
}
115
118
116
- this . unsubscribe = ( Store . listen as RefluxTypes [ " listen" ] ) ( function ( ) {
119
+ this . unsubscribe = ( Store . listen as RefluxTypes [ ' listen' ] ) ( function ( ) {
117
120
const auth = this . data && this . data . auth ? this . data . auth : null
118
121
const joeInstances =
119
122
this . data && this . data . joeInstances ? this . data . joeInstances : null
@@ -200,7 +203,7 @@ class JoeInstances extends Component<
200
203
this . state . data && this . state . data . auth ? this . state . data . auth : null
201
204
202
205
if ( anchorEl ) {
203
- let instanceId = anchorEl . getAttribute ( 'instanceid ' )
206
+ let instanceId = anchorEl . getAttribute ( 'aria-rowindex ' )
204
207
if ( ! instanceId ) {
205
208
return
206
209
}
@@ -358,8 +361,8 @@ class JoeInstances extends Component<
358
361
>
359
362
< p >
360
363
Joe Bot is a virtual DBA for SQL Optimization. Joe helps engineers
361
- quickly troubleshoot and optimize SQL. Joe runs on top of the
362
- DBLab Engine. (
364
+ quickly troubleshoot and optimize SQL. Joe runs on top of the DBLab
365
+ Engine. (
363
366
< GatewayLink
364
367
href = "https://postgres.ai/docs/joe-bot"
365
368
target = "_blank"
@@ -422,6 +425,7 @@ class JoeInstances extends Component<
422
425
aria-label = "more"
423
426
aria-controls = "instance-menu"
424
427
aria-haspopup = "true"
428
+ aria-rowindex = { data . data [ i ] . id }
425
429
onClick = { this . openMenu }
426
430
>
427
431
< MoreVertIcon />
0 commit comments