Skip to content

Commit 0fb4a5c

Browse files
NaiSideraIvan Samarin
andauthored
chore(Tablets): show if tablet if follower, hide 'leader' hint (#945)
Co-authored-by: Ivan Samarin <[email protected]>
1 parent a391e94 commit 0fb4a5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/Tablets/Tablets.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const columns: DataTableColumn<TTabletStateInfo & {fqdn?: string}>[] = [
3535
render: ({row}) => {
3636
return (
3737
<span>
38-
{row.Type} {row.Leader ? <Text color="secondary">leader</Text> : ''}
38+
{row.Type} {row.Leader ? '' : <Text color="secondary">follower</Text>}
3939
</span>
4040
);
4141
},

0 commit comments

Comments
 (0)