mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
fix: crud编辑器组件面板提示导致页面卡死问题修复 (#8779)
Co-authored-by: wanglinfang <wanglinfang@baidu.com>
This commit is contained in:
parent
8e19fcea70
commit
e124be1aa6
@ -686,7 +686,7 @@ export default class CRUD extends React.Component<CRUDProps, any> {
|
|||||||
} else if (!props.api && isPureVariable(props.source)) {
|
} else if (!props.api && isPureVariable(props.source)) {
|
||||||
const next = resolveVariableAndFilter(props.source, props.data, '| raw');
|
const next = resolveVariableAndFilter(props.source, props.data, '| raw');
|
||||||
|
|
||||||
if (!this.lastData || this.lastData !== next) {
|
if (!this.lastData || !isEqual(this.lastData, next)) {
|
||||||
store.initFromScope(props.data, props.source, {
|
store.initFromScope(props.data, props.source, {
|
||||||
columns: store.columns ?? props.columns
|
columns: store.columns ?? props.columns
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user