Skip to content
Snippets Groups Projects
Unverified Commit 52537c9a authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub
Browse files

Merge pull request #1170 from towerofnix/fix-deletion-warning

Remove sprite-specific text from sprite/sound/etc deletion warning
parents 7786f374 9fa0eab3
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ class SpriteSelectorItem extends React.Component {
handleDelete () {
// @todo add i18n here
// eslint-disable-next-line no-alert
if (window.confirm('Are you sure you want to delete this sprite?')) {
if (window.confirm('Are you sure you want to delete this?')) {
this.props.onDeleteButtonClick(this.props.id);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment