Skip to content

Commit

Permalink
3.6.0 (#9372)
Browse files Browse the repository at this point in the history
* fix: 修复 inputTable 在列中表单项有默认值的情况下无法新增的问题

* chore: @fortawesome/fontawesome-free 6.x 版本svg 丢失, 先改回5.x 版本

* bump: amis v3.6.1

* bump: amis v3.6.2

* fix: PopOver嵌套场景下错误触发hidden事件问题 Close: #9015 (#9022)

* fix: Combo配置flat且成员配置必填后校验无法通过问题 (#9027)

* bump: amis v3.6.3

* fix: Select移动端组件多选且设置menuTpl时无法选择 Close: #9005 (#9023)

* fix: 修复使用列切换功能引发的 mst 报错问题 (#9371)

---------

Co-authored-by: lurunze1226 <lurunze1226@foxmail.com>
Co-authored-by: RUNZE LU <36724300+lurunze1226@users.noreply.github.com>
  • Loading branch information
3 people authored Jan 9, 2024
1 parent 52da9b6 commit 8b4391d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/amis/src/renderers/Table/ColumnToggler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default class ColumnToggler extends React.Component<

componentDidUpdate(prevProps: ColumnTogglerProps) {
if (anyChanged('activeToggaleColumns', prevProps, this.props)) {
this.setState({tempColumns: this.props.columns});
this.setState({tempColumns: cloneDeep(this.props.columns)});
}
}

Expand Down

0 comments on commit 8b4391d

Please sign in to comment.