0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-23 18:00:29 +01:00
Dieser Commit ist enthalten in:
Angus McLeod 2024-11-22 17:14:41 +01:00
Ursprung ce55b4671e
Commit f55324af7c

Datei anzeigen

@ -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",