1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 10:08:52 +08:00
This commit is contained in:
lana-k
2024-01-07 12:14:08 +01:00
parent 4c8401f32f
commit 5123e39a60
2 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "sqliteviz",
"version": "0.23.2",
"version": "0.24.0",
"license": "Apache-2.0",
"private": true,
"scripts": {

View File

@@ -19,7 +19,7 @@
</thead>
<tbody>
<tr v-for="(col, index) in columns" :key="index">
<th>{{ col }}</th>
<th class="column-cell">{{ col }}</th>
<td
:data-col="index"
:data-row="currentRowIndex"
@@ -212,4 +212,8 @@ table.sqliteviz-table {
flex-grow: 1;
overflow: auto;
}
.column-cell {
max-width: 0;
}
</style>