FIX: Ensure there is no limit on tag list settings (#17355)

`maximum=null` is not a supported configuration option. Instead, we need to pass the `@unlimitedTagCount` attribute
This commit is contained in:
David Taylor 2022-07-06 12:23:23 +01:00 committed by GitHub
parent 2d5d15b4bb
commit fb31ae04a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
<TagChooser @tags={{this.selectedTags}} @onChange={{action "changeSelectedTags"}} @everyTag={{true}} @options={{hash
<TagChooser @tags={{this.selectedTags}} @onChange={{action "changeSelectedTags"}} @everyTag={{true}} @unlimitedTagCount={{true}} @options={{hash
allowAny=false
maximum=null
}} />
<div class="desc">{{html-safe this.setting.description}}</div>
<SettingValidationMessage @message={{this.validationMessage}} />