mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-07 02:28:54 +08:00
#115 version
This commit is contained in:
@@ -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": {
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user