Includes: * FIX: Don't override computed properties * FIX: Prevent a set-after-destroy error * FIX: Get rid of select-kit deprecations * FIX: Replace removed admin-group-selector * FIX: Provide onChange action to fix warnings * FIX: Remove an element with an invalid id * DEV: Remove topic-notifications-button from dropdowns It has its own styleguide section under "Molecules". * UX: Styleguide tweaks * DEV: Make the dropdowns useable
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
export default Ember.Component.extend({
|
|
tagName: "section",
|
|
classNames: ["styleguide-example"],
|
|
value: null,
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
this.value = this.initialValue;
|
|
},
|
|
});
|