enhance(actions): make workflow dispatch choice dropdown support search (#39154)

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
Mitrahsoft
2026-08-28 22:05:04 +00:00
committed by GitHub
co-authored by wxiaoguang
parent e806566b39
commit 78d3c60c7a
@@ -12,7 +12,7 @@
<div class="ui field {{if .Required}}required{{end}}">
{{if eq .Type "choice"}}
<label>{{or .Description .Name}}:</label>
<select class="ui selection dropdown" name="{{.Name}}">
<select class="ui search selection dropdown" name="{{.Name}}">
{{range .Options}}
<option value="{{.}}" {{if eq $item.Default .}}selected{{end}}>{{.}}</option>
{{end}}