mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 03:58:07 +08:00
fix(amis-core): 修复chart resizeSensor失效问题
This commit is contained in:
parent
f9246db1db
commit
882223b9c0
@ -19,7 +19,7 @@ class EventQueue {
|
||||
|
||||
call(type: EventType, ...args: any[]) {
|
||||
this.q.forEach(item => {
|
||||
if (item.type === type || type === 'both') {
|
||||
if (item.type === type || item.type === 'both' || type === 'both') {
|
||||
item.fn.apply(null, args);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user