Skip to content
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.

Commit

Permalink
Dummy commit to kick off build again
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarlow12 authored and wbreza committed Apr 19, 2019
1 parent 390ab50 commit f45cf24
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/react/components/pages/editorPage/editorPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit f45cf24

Please sign in to comment.