Dummy commit to kick off build again

Esse commit está contido em:
Tanner Barlow
2019-04-16 07:25:56 -07:00
commit de Wallace Breza
commit 4a0dcb2905
@@ -304,6 +304,9 @@ export default class EditorPage extends React.Component<IEditorPageProps, IEdito
}, () => this.canvas.current.applyTag(tag.name));
}
/**
* Open confirm dialog for tag renaming
*/
private confirmTagRenamed = (tagName: string, newTagName: string): void => {
this.renameTagConfirm.current.open(tagName, newTagName);
}
@@ -333,6 +336,9 @@ export default class EditorPage extends React.Component<IEditorPageProps, IEdito
});
}
/**
* Open Confirm dialog for tag deletion
*/
private confirmTagDeleted = (tagName: string): void => {
this.deleteTagConfirm.current.open(tagName);
}