chore(edge): add test ids [EE-5323] (#9048)

pull/9053/head
Chaim Lev-Ari 2023-06-08 06:03:04 +07:00 committed by GitHub
parent 8129e7590b
commit 58c1a60fee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -25,7 +25,7 @@
<div class="col-sm-12 form-section-title"> Group type </div>
<box-selector slim="true" value="$ctrl.model.Dynamic" on-change="($ctrl.onChangeDynamic)" options="$ctrl.groupTypeOptions"></box-selector>
<box-selector slim="true" value="$ctrl.model.Dynamic" on-change="($ctrl.onChangeDynamic)" options="$ctrl.groupTypeOptions" radio-name="'groupTypeDynamic'"></box-selector>
<!-- StaticGroup -->
<div ng-if="!$ctrl.model.Dynamic">
@ -55,7 +55,7 @@
<div ng-if="$ctrl.model.Dynamic">
<div class="col-sm-12 form-section-title"> Tags </div>
<box-selector slim="true" value="$ctrl.model.PartialMatch" on-change="($ctrl.onChangePartialMatch)" options="$ctrl.tagOptions"></box-selector>
<box-selector slim="true" value="$ctrl.model.PartialMatch" on-change="($ctrl.onChangePartialMatch)" options="$ctrl.tagOptions" radio-name="'partialMatch'"></box-selector>
<tag-selector ng-if="$ctrl.model.TagIds" value="$ctrl.model.TagIds" on-change="($ctrl.onChangeTags)"> </tag-selector>

View File

@ -81,6 +81,7 @@ export function TagSelector({ value, allowCreate = false, onChange }: Props) {
noOptionsMessage={() => 'No tags available'}
formatCreateLabel={(inputValue) => `Create "${inputValue}"`}
onCreateOption={handleCreateOption}
aria-label="Tags"
/>
</FormControl>
</>