webapp: Fix lint error
This commit is contained in:
parent
bf05dc8f9b
commit
88a6e48773
@ -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>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user