mirror of https://github.com/portainer/portainer
chore(edge): add test ids [EE-5323] (#9048)
parent
8129e7590b
commit
58c1a60fee
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
</>
|
||||
|
|
Loading…
Reference in New Issue