FIX: Icon missing in new releases of Discourse
This commit is contained in:
parent
7ca73b293a
commit
aa885dcfac
|
@ -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');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue