Ran linter
This commit is contained in:
parent
674bfdedc4
commit
460c320e85
2 changed files with 9 additions and 3 deletions
|
@ -10,9 +10,15 @@
|
|||
<tbody>
|
||||
<tr v-for="tuple in dataset.data" :key="tuple">
|
||||
<template v-for="(item, index) in tuple">
|
||||
<td :key="item" v-if="index===1 && !isHexValue(item)" colspan="2">{{ item }}</td>
|
||||
<td :key="item" v-if="index === 1 && !isHexValue(item)" colspan="2">
|
||||
{{ item }}
|
||||
</td>
|
||||
<td :key="item" v-else>{{ item }}</td>
|
||||
<td :key="item" v-if="isHexValue(item)" :style="'background-color:'+item"></td>
|
||||
<td
|
||||
:key="item"
|
||||
v-if="isHexValue(item)"
|
||||
:style="'background-color:' + item"
|
||||
></td>
|
||||
</template>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
@ -101,4 +101,4 @@ export default {
|
|||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue