We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01c0f5b commit 87f3132Copy full SHA for 87f3132
client/components/forms/MatrixInput.vue
@@ -18,7 +18,7 @@
18
>
19
<thead class="">
20
<tr>
21
- <th />
+ <th colspan="2"/>
22
<td
23
v-for="column in columns"
24
:key="column"
@@ -37,8 +37,8 @@
37
:key="rowIndex"
38
class="border-t border-gray-300"
39
40
- <td>
41
- <div class="w-full flex-grow p-2 text-sm truncate">
+ <td colspan="2">
+ <div class="w-full flex-grow p-2 text-sm">
42
{{ row }}
43
</div>
44
</td>
@@ -103,7 +103,7 @@ export default {
103
}
104
},
105
computed: {},
106
- beforeMount() {
+ mounted() {
107
if (!this.compVal || typeof this.compVal !== 'object') {
108
this.compVal = {}
109
0 commit comments