We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8730137 commit 7fd6a31Copy full SHA for 7fd6a31
src/components/widgets/system/McuCard.vue
@@ -16,19 +16,19 @@
16
17
<v-simple-table dense>
18
<tbody>
19
- <tr>
+ <tr v-if="mcuConstants.MCU">
20
<th>{{ $t('app.system_info.label.micro_controller') }}</th>
21
<td>{{ mcuConstants.MCU }}</td>
22
</tr>
23
+ <tr v-if="mcuConstants.CLOCK_FREQ">
24
<th>{{ $t('app.system_info.label.frequency') }}</th>
25
<td>{{ $filters.getReadableFrequencyString(+mcuConstants.CLOCK_FREQ) }}</td>
26
27
<tr v-if="klippyApp.isKalico && mcu.app">
28
<th>{{ $t('app.system_info.label.application') }}</th>
29
<td>{{ mcu.app }}</td>
30
31
+ <tr v-if="mcu.mcu_version">
32
<th>{{ $t('app.system_info.label.version') }}</th>
33
<td>{{ mcu.mcu_version }}</td>
34
0 commit comments