Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-23 18:00:29 +01:00
Minor linting
Dieser Commit ist enthalten in:
Ursprung
ce55b4671e
Commit
f55324af7c
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
|
@ -1,7 +1,7 @@
|
|||
import { getOwner } from "@ember/application";
|
||||
import Component from "@ember/component";
|
||||
import { computed } from "@ember/object";
|
||||
import { alias, gt, or } from "@ember/object/computed";
|
||||
import { alias, gt, or, equal } from "@ember/object/computed";
|
||||
import { bind, later } from "@ember/runloop";
|
||||
import { service } from "@ember/service";
|
||||
import $ from "jquery";
|
||||
|
@ -135,7 +135,7 @@ export default Component.extend({
|
|||
listEnabled: computed("options.listSelection", "inputType", function () {
|
||||
return this.optionEnabled("listSelection");
|
||||
}),
|
||||
valueEnabled: computed.equal("connector", "is"),
|
||||
valueEnabled: equal("connector", "is"),
|
||||
|
||||
@discourseComputed(
|
||||
"site.groups",
|
||||
|
|
Laden …
In neuem Issue referenzieren