mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 03:48:13 +08:00
Merge pull request #9546 from allenve/master
fix(editor): editor 数据域查询问题
This commit is contained in:
commit
4314e1d262
@ -2141,7 +2141,8 @@ export class EditorManager {
|
||||
}
|
||||
|
||||
while (scope) {
|
||||
const [id, type] = scope.id.split('-');
|
||||
const [id] = scope.id.split('-');
|
||||
const type = scope.id.substring(id.length + 1); // replace(`${id}-`, '');
|
||||
const scopeNode = this.store.getNodeById(id, type);
|
||||
|
||||
if (scopeNode && !scopeNode.info?.isListComponent) {
|
||||
|
Loading…
Reference in New Issue
Block a user