mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-01 03:18:16 +08:00
Merge pull request #8015 from igrowp/fix-some-bug
fix: diffEditor组件在某些场景下使用变量时导致页面卡死的问题
This commit is contained in:
commit
60e2743cf6
@ -199,7 +199,14 @@ export class DiffEditor extends React.Component<DiffEditorProps, any> {
|
||||
value !== prevProps.value &&
|
||||
!this.state.focused
|
||||
) {
|
||||
this.modifiedEditor.getModel().setValue(normalizeValue(value, language));
|
||||
this.modifiedEditor.getModel().setValue(
|
||||
isPureVariable(value as string)
|
||||
? normalizeValue(
|
||||
resolveVariableAndFilter(value || '', data, '| raw', () => ''),
|
||||
language
|
||||
)
|
||||
: normalizeValue(value, language)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -178,9 +178,10 @@ export class SearchBoxRenderer extends React.Component<
|
||||
this.setState({value: ''});
|
||||
}
|
||||
}
|
||||
|
||||
setData(value: any) {
|
||||
this.setState({value});
|
||||
if (typeof value === 'string') {
|
||||
this.setState({value});
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
|
Loading…
Reference in New Issue
Block a user