1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 18:18:53 +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", "name": "sqliteviz",
"version": "0.23.2", "version": "0.24.0",
"license": "Apache-2.0", "license": "Apache-2.0",
"private": true, "private": true,
"scripts": { "scripts": {

View File

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