Skip to content
Snippets Groups Projects
Commit 4ea11e10 authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire: Committed by Reiter, Christoph
Browse files

Fix input type

parent 353b89e8
No related branches found
No related tags found
No related merge requests found
...@@ -110,7 +110,7 @@ class DataTableView extends LitElement { ...@@ -110,7 +110,7 @@ class DataTableView extends LitElement {
&& (typeof element.visible === 'undefined' || element.visible !== false) && (typeof element.visible === 'undefined' || element.visible !== false)
&& (typeof element.searchable === 'undefined' || element.searchable !== false)) { && (typeof element.searchable === 'undefined' || element.searchable !== false)) {
const input = document.createElement('input'); const input = document.createElement('input');
input.type = 'text123'; input.type = 'text';
input.className = 'column-search-line'; input.className = 'column-search-line';
input.id = 'input-col-' + index; input.id = 'input-col-' + index;
input.placeholder = 'Search in ' + element.title; input.placeholder = 'Search in ' + element.title;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment