Ghost-Admin/app/components/gh-theme-error-li.js

14 lines
245 B
JavaScript

import Component from '@ember/component';
export default Component.extend({
tagName: '',
error: null,
showDetails: false,
actions: {
toggleDetails() {
this.toggleProperty('showDetails');
}
}
});