From d44ebc87d8ca45dc72f25c3ddced32229b2f7420 Mon Sep 17 00:00:00 2001 From: Faizaan Gagan Date: Mon, 31 Jan 2022 15:58:42 +0530 Subject: [PATCH 1/2] FIX: increase width to accomodate long category names --- .../wizard/components/wizard-category-selector.js.es6 | 1 + assets/stylesheets/wizard/custom/field.scss | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/assets/javascripts/wizard/components/wizard-category-selector.js.es6 b/assets/javascripts/wizard/components/wizard-category-selector.js.es6 index 10da029f25..3ddc4c0009 100644 --- a/assets/javascripts/wizard/components/wizard-category-selector.js.es6 +++ b/assets/javascripts/wizard/components/wizard-category-selector.js.es6 @@ -3,6 +3,7 @@ import { computed } from "@ember/object"; import { makeArray } from "discourse-common/lib/helpers"; export default CategorySelector.extend({ + classNames: ["category-selector", "wizard-category-selector"], content: computed( "categories.[]", "blacklist.[]", diff --git a/assets/stylesheets/wizard/custom/field.scss b/assets/stylesheets/wizard/custom/field.scss index f2bb3aa006..cb6f063587 100644 --- a/assets/stylesheets/wizard/custom/field.scss +++ b/assets/stylesheets/wizard/custom/field.scss @@ -173,4 +173,8 @@ } } } + + .wizard-category-selector { + width: 500px; + } } From 61b2acd7a8c973c4b50587ac4fc171a90e606feb Mon Sep 17 00:00:00 2001 From: Faizaan Gagan Date: Mon, 31 Jan 2022 16:00:04 +0530 Subject: [PATCH 2/2] version bump --- plugin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.rb b/plugin.rb index 9037648943..900b5774a7 100644 --- a/plugin.rb +++ b/plugin.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true # name: discourse-custom-wizard # about: Create custom wizards -# version: 1.17.1 +# version: 1.17.2 # authors: Angus McLeod # url: https://github.com/paviliondev/discourse-custom-wizard # contact emails: angus@thepavilion.io