@@ -63,12 +63,12 @@ export function Tablet() {
63
63
64
64
const { id} = useParams < { id : string } > ( ) ;
65
65
66
- const [ { database : queryDatabase , clusterName : queryClusterName } ] =
66
+ const [ { database : queryDatabase , clusterName : queryClusterName , followerId : queryFollowerId } ] =
67
67
useQueryParams ( tabletPageQueryParams ) ;
68
68
69
69
const [ autoRefreshInterval ] = useAutoRefreshInterval ( ) ;
70
70
const { currentData, isFetching, error} = tabletApi . useGetTabletQuery (
71
- { id, database : queryDatabase ?? undefined } ,
71
+ { id, database : queryDatabase ?? undefined , followerId : queryFollowerId ?? undefined } ,
72
72
{ pollingInterval : autoRefreshInterval } ,
73
73
) ;
74
74
@@ -131,7 +131,9 @@ function TabletContent({
131
131
history : ITabletPreparedHistoryItem [ ] ;
132
132
} ) {
133
133
const isEmpty = ! Object . keys ( tablet ) . length ;
134
- const { Overall, HiveId} = tablet ;
134
+ const { Overall, HiveId, FollowerId} = tablet ;
135
+
136
+ const tabletName = `${ id } ${ FollowerId ? `.${ FollowerId } ` : '' } ` ;
135
137
136
138
return (
137
139
< EmptyStateWrapper
@@ -143,7 +145,7 @@ function TabletContent({
143
145
< EntityPageTitle
144
146
entityName = { i18n ( 'tablet.header' ) }
145
147
status = { Overall ?? EFlag . Grey }
146
- id = { id }
148
+ id = { tabletName }
147
149
/>
148
150
< TabletControls tablet = { tablet } />
149
151
< TabletInfo tablet = { tablet } />
0 commit comments