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

Commit

Permalink
Bugfix, correction to column not found exception. Issue with boolean …
Browse files Browse the repository at this point in the history
…values not being correctly tested.
  • Loading branch information
jamesdordoy committed Oct 26, 2019
1 parent dcd313a commit 7e0ea1d
Show file tree
Hide file tree
Showing 2 changed files with 2 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": "laravel-vue-datatable",
"version": "0.3.18",
"version": "0.3.19",
"description": "Vue.js datatable made with Laravel and Bootstrap in mind",
"author": "James Dordoy <[email protected]>",
"homepage": "https://github.com/jamesdordoy/Laravel-Vue-Datatable",
Expand Down
2 changes: 1 addition & 1 deletion src/components/DataTableCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default {
columnName = this.value[this.name];
}
if (! columnName) {
if (typeof columnName === 'undefined') {
throw new ColumnNotFoundException(`The column ${this.name} was not found`);
}
Expand Down

0 comments on commit 7e0ea1d

Please sign in to comment.