You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui-v2/app/initializers/power-select.js

15 lines
327 B

export function initialize(application) {
const PowerSelectComponent = application.resolveRegistration('component:power-select');
PowerSelectComponent.reopen({
updateState: function(changes) {
if (!this.isDestroyed) {
return this._super(changes);
}
},
});
}
export default {
initialize,
};