Merge pull request #436 from antvis/fix_destroy

fix(render): fix elemet double destroy error
This commit is contained in:
@thinkinggis 2020-07-16 14:27:01 +08:00 committed by GitHub
commit b55b5fb62d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,6 +35,6 @@ export default class ReglElements implements IElements {
}
public destroy() {
this.elements.destroy();
// this.elements.destroy();
}
}