Skip to content

Commit

Permalink
#115 version
Browse files Browse the repository at this point in the history
  • Loading branch information
lana-k committed Jan 7, 2024
1 parent 4c8401f commit 5123e39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sqliteviz",
"version": "0.23.2",
"version": "0.24.0",
"license": "Apache-2.0",
"private": true,
"scripts": {
Expand Down
6 changes: 5 additions & 1 deletion src/views/Main/Workspace/Tabs/Tab/RunResult/Record/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -212,4 +212,8 @@ table.sqliteviz-table {
flex-grow: 1;
overflow: auto;
}
.column-cell {
max-width: 0;
}
</style>

0 comments on commit 5123e39

Please sign in to comment.