Skip to content

Commit

Permalink
fix: Table 编辑器面板初始顶部&底部是否初始选中问题修复 (baidu#9359)
Browse files Browse the repository at this point in the history
  • Loading branch information
2betop committed Jan 11, 2024
1 parent d48c516 commit 010f53f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/amis-editor/src/plugin/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,7 @@ export class TablePlugin extends BasePlugin {
formType: 'extend',
label: '头部',
name: 'showHeader',
pipeIn: (value: any) => value ?? true,
form: {
body: [
{
Expand All @@ -536,6 +537,7 @@ export class TablePlugin extends BasePlugin {
formType: 'extend',
label: '底部',
name: 'showFooter',
pipeIn: (value: any) => value ?? true,
form: {
body: [
{
Expand Down

0 comments on commit 010f53f

Please sign in to comment.