Fixed variable capitalization in create test view

This commit is contained in:
Gregory Ballantine 2024-05-29 09:00:14 -04:00
parent 86bf4d37f0
commit 8412163370

View File

@ -9,7 +9,7 @@
<label for="test_hardware"> <label for="test_hardware">
Hardware Component: Hardware Component:
<select id="test_hardware" class="u-full-width" name="test_hardware"> <select id="test_hardware" class="u-full-width" name="test_hardware">
{{ range $hw := .Hardware }} {{ range $hw := .hardware }}
<option value="{{ $hw.ID }}">{{ $hw.Name }}</option> <option value="{{ $hw.ID }}">{{ $hw.Name }}</option>
{{ end }} {{ end }}
</select> </select>
@ -29,7 +29,7 @@
<label for="test_benchmarks"> <label for="test_benchmarks">
Benchmarks to Test: Benchmarks to Test:
<select id="test_benchmarks" class="u-full-width" name="test_benchmarks" multiple> <select id="test_benchmarks" class="u-full-width" name="test_benchmarks" multiple>
{{ range $bm := .Benchmarks }} {{ range $bm := .benchmarks }}
<option value="{{ $bm.ID }}">{{ $bm.Name }}</option> <option value="{{ $bm.ID }}">{{ $bm.Name }}</option>
{{ end }} {{ end }}
</select> </select>