mirror of
https://github.com/flarum/framework.git
synced 2025-01-31 23:16:16 +08:00
Fix alerts not dismissing
This commit is contained in:
parent
57f4dc6091
commit
195e0f1321
|
@ -31,7 +31,7 @@ export default JsonApiAdapter.extend({
|
|||
} else {
|
||||
message = errors.message;
|
||||
}
|
||||
var alert = AlertMessage.create({
|
||||
var alert = AlertMessage.extend({
|
||||
type: 'warning',
|
||||
message: message
|
||||
});
|
||||
|
|
|
@ -8,7 +8,7 @@ export default Ember.Controller.extend({
|
|||
this.get('alerts').pushObject(message);
|
||||
},
|
||||
dismissAlert: function(message) {
|
||||
this.get('alerts').removeObject(message);
|
||||
this.get('alerts').removeObject(message.constructor);
|
||||
},
|
||||
clearAlerts: function() {
|
||||
this.get('alerts').clear();
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user