Skip to content

Commit

Permalink
Merge pull request #45 from nzzdev/release-2.0.6
Browse files Browse the repository at this point in the history
Release 2.0.6
  • Loading branch information
philipkueng authored Jun 27, 2018
2 parents 5f3d296 + 7a00d0e commit d9db584
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions helpers/renderingInfoScript.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,15 @@ function getCardLayoutScript(context) {

let renderMinibarsFunction = "";
if (
context.item.options.minibar.selectedColumn !== null &&
context.item.options.minibar.selectedColumn !== undefined
context.item.options.minibar !== null &&
context.item.options.minibar !== undefined
) {
renderMinibarsFunction = `renderMinibars${context.id}()`;
if (
context.item.options.minibar.selectedColumn !== null &&
context.item.options.minibar.selectedColumn !== undefined
) {
renderMinibarsFunction = `renderMinibars${context.id}()`;
}
}

return `
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "q-table",
"version": "2.0.5",
"version": "2.0.6",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit d9db584

Please sign in to comment.