Remove unnecessary return

This commit is contained in:
Clement Ho 2018-01-24 21:04:55 -06:00
parent a8badbe51b
commit 2c96dd21e1
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export default class LabelManager {
rollbackLabelPosition($label, originalAction) {
const action = originalAction === 'remove' ? 'add' : 'remove';
this.toggleLabelPriority($label, action, false);
return flash(this.errorMessage);
flash(this.errorMessage);
}
getSortedLabelsIds() {