add none
All checks were successful
/ release (push) Successful in 28s

This commit is contained in:
speatzle 2024-10-08 16:48:12 +02:00
parent 6927e31a62
commit a60f05be12

View file

@ -85,12 +85,14 @@
<input type="checkbox" name="health_ok_queue_transcode"> <input type="checkbox" name="health_ok_queue_transcode">
<label for="health_command">Health Command:</label> <label for="health_command">Health Command:</label>
<select id="health_command" name="health_command"> <select id="health_command" name="health_command">
<option value="">None</option>
{{range $l := .FfmpegCommands}} {{range $l := .FfmpegCommands}}
<option value="{{$l.ID}}">{{$l.Name}}</option> <option value="{{$l.ID}}">{{$l.Name}}</option>
{{end}} {{end}}
</select> </select>
<label for="transcode_command">Transcode Command:</label> <label for="transcode_command">Transcode Command:</label>
<select id="transcode_command" name="transcode_command"> <select id="transcode_command" name="transcode_command">
<option value="">None</option>
{{range $l := .FfmpegCommands}} {{range $l := .FfmpegCommands}}
<option value="{{$l.ID}}">{{$l.Name}}</option> <option value="{{$l.ID}}">{{$l.Name}}</option>
{{end}} {{end}}