fix(amis-core): 修复chart resizeSensor失效问题

This commit is contained in:
wibetter 2023-09-18 19:57:13 +08:00
parent f9246db1db
commit 882223b9c0

View File

@ -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);
}
});