Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit e88ebb3

Browse files
committed
fix(plugins/plugin-client-common): disable Timeline option for Tables
Fixes #5864
1 parent 8e70862 commit e88ebb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/plugin-client-common/src/components/Content/Table/PaginatedTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ export default class PaginatedTable<P extends Props, S extends State> extends Re
222222
private bottomToolbar(lightweightTables = false) {
223223
const gridableColumn = findGridableColumn(this.props.response)
224224
const hasSequenceButton = this.hasSequenceButton()
225-
const hasTimelineButton = hasSequenceButton // same
225+
const hasTimelineButton = false // disabled for now, see https://github.com/IBM/kui/issues/5864
226226

227227
const needsBottomToolbar =
228228
this.isPaginated() ||

0 commit comments

Comments
 (0)