Skip to content
This repository was archived by the owner on Apr 30, 2024. It is now read-only.

Commit 32cbc57

Browse files
committed
0.5.6 Fix to table header styling.
1 parent 3b7db8f commit 32cbc57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "laravel-vue-datatable",
3-
"version": "0.5.5",
3+
"version": "0.5.6",
44
"description": "Vue.js datatable made with Laravel and Bootstrap in mind",
55
"author": "James Dordoy <[email protected]>",
66
"homepage": "https://jamesdordoy.github.io/laravel-vue-datatable/",

src/components/DataTableTh.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class="laravel-vue-datatable-th"
77
:style="'width: ' + column.width + '%'"
88
@click="column.orderable ? sort(column) : null">
9-
<div class="inline-block" v-if="column.orderable">
9+
<div style="display: inline-block;" v-if="column.orderable">
1010
<div
1111
class="filter-asc"
1212
style="

0 commit comments

Comments
 (0)