webapp: Fix typo

This commit is contained in:
Thomas Basler 2024-01-19 20:02:03 +01:00
parent 0584eadcf2
commit 5d63f64411

View File

@ -33,9 +33,9 @@
<tr v-for="value in section.items" :key="value.n"> <tr v-for="value in section.items" :key="value.n">
<th>{{ value.n }}</th> <th>{{ value.n }}</th>
<td> <td>
<tempplate v-if="value.u!='bool'"> <template v-if="value.u!='bool'">
{{ $n(value.v, 'decimal') }} {{ value.u }} {{ $n(value.v, 'decimal') }} {{ value.u }}
</tempplate> </template>
<template v-else> <template v-else>
<StatusBadge :status="value.v==1" true_text="gridprofile.Enabled" false_text="gridprofile.Disabled"/> <StatusBadge :status="value.v==1" true_text="gridprofile.Enabled" false_text="gridprofile.Disabled"/>
</template> </template>
@ -109,4 +109,4 @@ export default defineComponent({
}, },
}, },
}); });
</script> </script>