Skip to content

Commit

Permalink
add toggle to core addon to fix broken ci builds (#8913)
Browse files Browse the repository at this point in the history
  • Loading branch information
Noelle Daley authored May 1, 2020
1 parent 9bc697b commit c2939e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@

import Component from '@ember/component';
import { computed } from '@ember/object';
import layout from '../templates/components/toggle';

export default Component.extend({
layout,
tagName: '',
checked: false,
disabled: false,
name: '',
size: 'normal',
status: 'normal',
safeId: computed('name', function() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
{{else}}
{{name}}
{{/if}}
</label>
</label>
1 change: 1 addition & 0 deletions ui/lib/core/app/components/toggle.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from 'core/components/toggle';

0 comments on commit c2939e8

Please sign in to comment.