Skip to content

Commit

Permalink
Trivial: resource creation failure message is no longer sticky
Browse files Browse the repository at this point in the history
  • Loading branch information
holandes22 committed Feb 10, 2016
1 parent bbdcc9e commit 3ae9a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/mixins/resource-list-route.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default Ember.Mixin.create({
flashMessages.positive('Successfully created');
this.refresh();
}).catch((error) => {
flashMessages.negative(error.errors[0].detail, { sticky: true });
flashMessages.negative(error.errors[0].detail, { timeout: 10000 });
});
}
}
Expand Down

0 comments on commit 3ae9a42

Please # to comment.