Skip to content

Commit 5691b8b

Browse files
Fix minor templating bugs impacting SSG
1 parent 58ca413 commit 5691b8b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

TrainingUFO/src/components/App/WireAmpacity/VisualizerOptsPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888

8989
<FDropdown
9090
v-model="calculator.wireGauge"
91-
:options="NEC.WireGauges.ordered.filter(gauge => NEC.BaseWireAmpacities[this.calculator.conductorMaterial][this.calculator.installationMethod][gauge][this.calculator.insulationRating].value)"
91+
:options="NEC.WireGauges.ordered.filter(gauge => NEC.BaseWireAmpacities[calculator.conductorMaterial][calculator.installationMethod][gauge][calculator.insulationRating].value)"
9292
label="Wire Size:"
9393
fullWidth
9494
aria-label="Wire Size in AWG">

TrainingUFO/src/components/Form/FRangeSlider.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
type="range"
66
:min="rangeMin"
77
:max="rangeMax"
8-
:value="inputValue"
98
v-model.number="inputValue"
109
:style="{'--min': rangeMin, '--max': rangeMax, '--value': inputValue}"
1110
v-bind="filterByKeyRegex($attrs, /^(id|name|tabindex|title|aria-)/i)" />

0 commit comments

Comments
 (0)