Check for stage_measure instead of stage type

This commit is contained in:
Joe Knapper 2026-02-17 10:41:10 +00:00
parent a01813f053
commit 9580d98706

View file

@ -23,7 +23,7 @@
</div>
</div>
</div>
<div v-if="stageType !== 'DummyStage'" class="uk-width-large">
<div v-if="stageMeasureAvailable" class="uk-width-large">
<h4>Stage Measurement Tools</h4>
<div class="uk-margin">
@ -78,6 +78,9 @@ export default {
stageType: function () {
return this.thingDescription("stage").title;
},
stageMeasureAvailable() {
return this.thingAvailable("stage_measure");
},
},
mounted() {