mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-30 23:38:11 +00:00
fix: fix lint issues for renderer-core/renderer/base
This commit is contained in:
parent
4b59190c7f
commit
d85437d4af
@ -151,9 +151,9 @@ export default function baseRendererFactory(): IBaseRenderComponent {
|
||||
this.__debug(`componentWillUnmount - ${this.props?.__schema?.fileName}`);
|
||||
}
|
||||
|
||||
async componentDidCatch(e: any, ...args: any[]) {
|
||||
this.__setLifeCycleMethods('componentDidCatch', { e, ...args });
|
||||
console.warn(e);
|
||||
async componentDidCatch(...args: any[]) {
|
||||
this.__setLifeCycleMethods('componentDidCatch', args);
|
||||
console.warn(args);
|
||||
}
|
||||
|
||||
reloadDataSource = () => new Promise((resolve, reject) => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user