Skip to content

Commit f55324a

Browse files
committed
Minor linting
1 parent ce55b46 commit f55324a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assets/javascripts/discourse/components/wizard-mapper-selector.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { getOwner } from "@ember/application";
22
import Component from "@ember/component";
33
import { computed } from "@ember/object";
4-
import { alias, gt, or } from "@ember/object/computed";
4+
import { alias, gt, or, equal } from "@ember/object/computed";
55
import { bind, later } from "@ember/runloop";
66
import { service } from "@ember/service";
77
import $ from "jquery";
@@ -135,7 +135,7 @@ export default Component.extend({
135135
listEnabled: computed("options.listSelection", "inputType", function () {
136136
return this.optionEnabled("listSelection");
137137
}),
138-
valueEnabled: computed.equal("connector", "is"),
138+
valueEnabled: equal("connector", "is"),
139139

140140
@discourseComputed(
141141
"site.groups",

0 commit comments

Comments
 (0)