CSM settings hidden by default in a details section

This commit is contained in:
jaknapper 2025-05-21 15:56:04 +01:00
parent 8799ebbaab
commit b66912ac8f

View file

@ -26,9 +26,16 @@
>
Download calibration data
</button>
<p v-if="this.csmMatrix!='undefined'">Current CSM matrix: {{ csmMatrix }} at a resolution of {{ csmResolution }} <br>
This means that one motor step is roughly {{ csmRatio }} pixels <br>
The full field of view is roughly {{ csmFOV }} motor steps</p>
<div v-if="this.csmMatrix!='undefined'" style="margin:10px;">
<details><summary>Calibration Details</summary>
<strong>CSM calculated for images with a resolution of {{ csmResolution }}</strong>
<ul>
<li>Current CSM Matrix: <tt>{{ csmMatrix }}</tt></li>
<li>Pixels per motor step: {{ csmRatio }}</li>
<li>Full field of view: {{ csmFOV }} motor steps</li>
</ul>
</details>
</div>
</div>
</template>