Skip to content

Commit

Permalink
Fix prettier errors
Browse files Browse the repository at this point in the history
  • Loading branch information
angusmcleod committed Oct 16, 2023
1 parent 244f7ac commit 8eee68a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ export default Component.extend(UndoChanges, {
};
}),

messageUrl: "https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/action-settings",
messageUrl:
"https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/action-settings",

@discourseComputed("action.type")
messageKey(type) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export default Component.extend(UndoChanges, {
isTextType: or("isText", "isTextarea", "isComposer"),
isComposerPreview: equal("field.type", "composer_preview"),
categoryPropertyTypes: selectKitContent(["id", "slug"]),
messageUrl: "https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/field-settings",
messageUrl:
"https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/field-settings",

@discourseComputed("field.type")
validations(type) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import CustomWizardCustomField from "../models/custom-wizard-custom-field";
export default Controller.extend({
messageKey: "create",
fieldKeys: ["klass", "type", "name", "serializers"],
documentationUrl: "https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/custom-fields",
documentationUrl:
"https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/custom-fields",

actions: {
addField() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import Controller from "@ember/controller";
import { default as discourseComputed } from "discourse-common/utils/decorators";

export default Controller.extend({
documentationUrl: "https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/",
documentationUrl:
"https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/",

@discourseComputed("wizardId")
wizardName(wizardId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import I18n from "I18n";
import { underscore } from "@ember/string";

export default Controller.extend({
messageUrl: "https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/wizard-manager",
messageUrl:
"https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/wizard-manager",
messageKey: "info",
messageIcon: "info-circle",
messageClass: "info",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import Controller from "@ember/controller";
import { default as discourseComputed } from "discourse-common/utils/decorators";

export default Controller.extend({
documentationUrl: "https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/",
documentationUrl:
"https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/",

@discourseComputed("wizardId")
wizardName(wizardId) {
Expand Down

0 comments on commit 8eee68a

Please sign in to comment.