fix tests

This commit is contained in:
Anton Lavrenov
2021-05-04 09:05:27 -05:00
parent 3066765d79
commit 7a6613118e
3 changed files with 6 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ export interface ImageConfig extends ShapeConfig {
export class Image extends Shape<ImageConfig> {
constructor(attrs: ImageConfig) {
super(attrs);
this.on('imageChange.konva', (e) => {
this.on('imageChange.konva', () => {
this._setImageLoad();
});