mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-12 12:40:29 +08:00
fix table type check (#9709)
* fix type check * add changeset * add changeset --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
parent
da22a294f2
commit
31418ef388
6
.changeset/silver-banks-add.md
Normal file
6
.changeset/silver-banks-add.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/dataframe": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:fix table type check
|
@ -1005,6 +1005,8 @@
|
||||
x={active_header_menu.x}
|
||||
y={active_header_menu.y}
|
||||
row={-1}
|
||||
on_add_row_above={() => add_row_at(active_cell_menu?.row ?? -1, "above")}
|
||||
on_add_row_below={() => add_row_at(active_cell_menu?.row ?? -1, "below")}
|
||||
on_add_column_left={() => add_col_at(active_header_menu?.col ?? -1, "left")}
|
||||
on_add_column_right={() =>
|
||||
add_col_at(active_header_menu?.col ?? -1, "right")}
|
||||
|
Loading…
x
Reference in New Issue
Block a user