FIX: Icon missing in new releases of Discourse

This commit is contained in:
Robin Ward 2017-09-25 11:42:13 -04:00
parent 7ca73b293a
commit aa885dcfac
1 changed files with 7 additions and 1 deletions

View File

@ -111,8 +111,9 @@ function initialize(api, container) {
}
}
}
});
};
export default {
@ -121,5 +122,10 @@ export default {
withPluginApi('0.8.5', api => {
initialize(api, container);
});
// Fix icons in new versions of discourse
withPluginApi('0.8.10', api => {
api.replaceIcon('notification.discourse_assign.assign_notification', 'user-plus');
});
}
};