Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion panel/models/tabulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export class DataTabulatorView extends HTMLBoxView {
override connect_signals(): void {
super.connect_signals()

this._debounced_redraw = debounce(() => this._resize_redraw(), 20, false)
this._debounced_redraw = debounce(() => this._resize_redraw(), 50, false)
const {
configuration, layout, columns, groupby, visible, download,
children, expanded, cell_styles, hidden_columns, page_size,
Expand Down Expand Up @@ -815,6 +815,7 @@ export class DataTabulatorView extends HTMLBoxView {
...this.model.configuration,
index: "_index",
nestedFieldSeparator: false,
autoResize: false,
movableColumns: false,
selectableRows,
columns: this.getColumns(),
Expand Down
Loading