mirror of
https://github.com/status-im/consul.git
synced 2025-01-19 10:15:06 +00:00
4b8cabce0d
This PR adds routes and an initial landing page for the Cluster Overview page
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
import Helper from 'ember-can/helpers/can';
|
|
|
|
export default class extends Helper {
|
|
_addAbilityObserver(ability, propertyName) {
|
|
if(!this.isDestroyed && !this.isDestroying) {
|
|
super._addAbilityObserver(...arguments);
|
|
}
|
|
}
|
|
}
|