DEV: Remove use of run-loop-and-computed-dot-access (#57)

Context: https://deprecations.emberjs.com/v3.x/#toc_deprecated-run-loop-and-computed-dot-access
This commit is contained in:
Isaac Janzen 2022-06-17 08:01:51 -05:00 committed by GitHub
parent 12b361f7b1
commit 3f06516cf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
import Component from "@ember/component";
import { computed } from "@ember/object";
import { gt } from "@ember/object/computed";
export default Component.extend({
tagName: "",
showCount: computed.gt("count", 0),
showCount: gt("count", 0),
});