1
0
mirror of https://github.com/flarum/core.git synced 2025-08-06 08:27:42 +02:00

Fix alerts not dismissing

This commit is contained in:
Toby Zerner
2015-02-26 13:28:44 +10:30
parent 57f4dc6091
commit 195e0f1321
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ import AlertMessage from 'flarum/components/ui/alert-message';
export default Ember.Route.extend(ApplicationRouteMixin, {
activate: function() {
if (!Ember.isEmpty(FLARUM_ALERT)) {
this.controllerFor('alerts').send('alert', AlertMessage.create(FLARUM_ALERT));
this.controllerFor('alerts').send('alert', AlertMessage.extend(FLARUM_ALERT));
FLARUM_ALERT = null;
}