Skip to content

Commit

Permalink
chore: correct the spelling of col-span to colspan (unovue#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
tortorse authored Mar 20, 2024
1 parent ac434a3 commit 24fc8f7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/www/src/examples/tasks/components/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const table = useVueTable({

<TableRow v-else>
<TableCell
col-span="{columns.length}"
:colspan="columns.length"
class="h-24 text-center"
>
No results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ const table = useVueTable({

<TableRow v-else>
<TableCell
:col-span="columns.length"
:colspan="columns.length"
class="h-24 text-center"
>
No results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ const table = useVueTable({

<TableRow v-else>
<TableCell
col-span="{columns.length}"
:colspan="columns.length"
class="h-24 text-center"
>
No results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const table = useVueTable({

<TableRow v-else>
<TableCell
col-span="{columns.length}"
:colspan="columns.length"
class="h-24 text-center"
>
No results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ const table = useVueTable({

<TableRow v-else>
<TableCell
:col-span="columns.length"
:colspan="columns.length"
class="h-24 text-center"
>
No results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ const table = useVueTable({

<TableRow v-else>
<TableCell
col-span="{columns.length}"
:colspan="columns.length"
class="h-24 text-center"
>
No results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const table = useVueTable({

<TableRow v-else>
<TableCell
col-span="{columns.length}"
:colspan="columns.length"
class="h-24 text-center"
>
No results.
Expand Down

Large diffs are not rendered by default.

0 comments on commit 24fc8f7

Please sign in to comment.