Fix: Table / Board createView bug (#1782)
* fix createView for tables and board page * removed residual console.log from InlineCell component
This commit is contained in:
@ -109,7 +109,6 @@ export const BoardHeader = ({ className, onStageAdd }: BoardHeaderProps) => {
|
||||
onCurrentViewSubmit: handleCurrentViewSubmit,
|
||||
onViewBarReset: handleViewBarReset,
|
||||
onViewSelect: handleViewSelect,
|
||||
onViewCreate: (view) => setSearchParams({ view: view.id }),
|
||||
}}
|
||||
>
|
||||
<ViewBar
|
||||
|
||||
@ -54,7 +54,6 @@ export const InlineCell = () => {
|
||||
persistField();
|
||||
closeInlineCell();
|
||||
};
|
||||
console.log(JSON.stringify({ fieldDefinition }));
|
||||
|
||||
return (
|
||||
<InlineCellContainer
|
||||
|
||||
@ -40,7 +40,6 @@ export const TableHeader = () => {
|
||||
...viewBarContextProps,
|
||||
onCurrentViewSubmit,
|
||||
onViewSelect: handleViewSelect,
|
||||
onViewCreate: (view) => setSearchParams({ view: view.id }),
|
||||
}}
|
||||
>
|
||||
<ViewBar
|
||||
|
||||
Reference in New Issue
Block a user