Skip to content

Commit

Permalink
feat(addon/components/paper-card-icon-actions): migrates to tagless n…
Browse files Browse the repository at this point in the history
…ative class.
  • Loading branch information
matthewhartstonge committed Oct 18, 2024
1 parent 2b99eb2 commit f38c889
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions addon/components/paper-card-icon-actions.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<md-card-icon-actions ...attributes>
{{yield}}
</md-card-icon-actions>
8 changes: 4 additions & 4 deletions addon/components/paper-card-icon-actions.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable ember/no-classic-components, ember/require-tagless-components, prettier/prettier */
/* eslint-disable ember/no-classic-components */
/**
* @module ember-paper
*/
Expand All @@ -8,6 +8,6 @@ import Component from '@ember/component';
* @class PaperCardIconActions
* @extends Ember.Component
*/
export default Component.extend({
tagName: 'md-card-icon-actions'
});
export default class PaperCardIconActions extends Component {
tagName = '';
}

0 comments on commit f38c889

Please sign in to comment.