Skip to content

Commit

Permalink
Fix deprecated-run-loop-and-computed-dot-access (#715)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwhittaker authored Feb 16, 2022
1 parent 47eb5bf commit 7efce68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/components/hot-content.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import Component from '@ember/component';
import layout from '../templates/components/hot-content';
import { computed } from '@ember/object';
import { reads } from '@ember/object/computed';

export default Component.extend({
layout,
value: computed.reads('hotReloadCUSTOMhlProperty'),
value: reads('hotReloadCUSTOMhlProperty'),
tagName: '',
// Support ember-test-selectors https://github.com/simplabs/ember-test-selectors#usage-with-tagless-components
supportsDataTestProperties: true,
Expand Down

0 comments on commit 7efce68

Please sign in to comment.