Skip to content

Commit

Permalink
webapp: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tbnobody committed Jan 19, 2024
1 parent 0584ead commit 5d63f64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp/src/components/GridProfile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
<tr v-for="value in section.items" :key="value.n">
<th>{{ value.n }}</th>
<td>
<tempplate v-if="value.u!='bool'">
<template v-if="value.u!='bool'">
{{ $n(value.v, 'decimal') }} {{ value.u }}
</tempplate>
</template>
<template v-else>
<StatusBadge :status="value.v==1" true_text="gridprofile.Enabled" false_text="gridprofile.Disabled"/>
</template>
Expand Down Expand Up @@ -109,4 +109,4 @@ export default defineComponent({
},
},
});
</script>
</script>

0 comments on commit 5d63f64

Please sign in to comment.