From 1cfbc16e9b3ae050fbdc0355c1a903b0423ea73f Mon Sep 17 00:00:00 2001 From: Mark Friedrich Date: Mon, 12 Aug 2019 22:31:27 +0200 Subject: [PATCH] - Fixed "Types not appearing after setting signature group", closed #831, closed #837 --- js/app/ui/module/system_signature.js | 4 ++-- public/js/v1.5.4/app/ui/module/system_signature.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/app/ui/module/system_signature.js b/js/app/ui/module/system_signature.js index ec8511cd..a11937e1 100644 --- a/js/app/ui/module/system_signature.js +++ b/js/app/ui/module/system_signature.js @@ -1131,7 +1131,7 @@ define([ * @returns {*} */ let getNeighboringCell = (tableApi, cell, columnSelector) => { - return tableApi.cell(tableApi.row(cell).index(), columnSelector); + return tableApi.cell(tableApi.cell(cell).index().row, columnSelector); }; /** @@ -1768,7 +1768,7 @@ define([ targets: 4, name: 'description', orderable: false, - searchable: false, + searchable: true, title: 'description', class: [config.tableCellFocusClass, config.tableCellActionClass].join(' '), type: 'html', diff --git a/public/js/v1.5.4/app/ui/module/system_signature.js b/public/js/v1.5.4/app/ui/module/system_signature.js index ec8511cd..a11937e1 100644 --- a/public/js/v1.5.4/app/ui/module/system_signature.js +++ b/public/js/v1.5.4/app/ui/module/system_signature.js @@ -1131,7 +1131,7 @@ define([ * @returns {*} */ let getNeighboringCell = (tableApi, cell, columnSelector) => { - return tableApi.cell(tableApi.row(cell).index(), columnSelector); + return tableApi.cell(tableApi.cell(cell).index().row, columnSelector); }; /** @@ -1768,7 +1768,7 @@ define([ targets: 4, name: 'description', orderable: false, - searchable: false, + searchable: true, title: 'description', class: [config.tableCellFocusClass, config.tableCellActionClass].join(' '), type: 'html',