mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2025-12-11 17:30:37 +01:00
webapp: Fix lint error
This commit is contained in:
@@ -11,8 +11,8 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<template v-for="(category) in categories">
|
<template v-for="(category) in categories" :key="category">
|
||||||
<tr v-for="(prop, prop_idx) in properties(category)">
|
<tr v-for="(prop, prop_idx) in properties(category)" :key="prop">
|
||||||
<td v-if="prop_idx == 0" :rowspan="properties(category).length">
|
<td v-if="prop_idx == 0" :rowspan="properties(category).length">
|
||||||
{{ capitalizeFirstLetter(category) }}</td>
|
{{ capitalizeFirstLetter(category) }}</td>
|
||||||
<td :class="{ 'table-danger': !isEqual(category, prop) }">{{ prop }}</td>
|
<td :class="{ 'table-danger': !isEqual(category, prop) }">{{ prop }}</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user