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