From 7f890fd6a212b25c2ec9f4568a870129b71445fc Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 7 Jun 2020 18:08:03 +0300 Subject: [PATCH] ExpandableTable.js: lowercase `colspan` --- build/js/ExpandableTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/js/ExpandableTable.js b/build/js/ExpandableTable.js index 82029b0c1..9d9835044 100644 --- a/build/js/ExpandableTable.js +++ b/build/js/ExpandableTable.js @@ -48,7 +48,7 @@ class ExpandableTable { init() { $(Selector.HEADER).each((_, $header) => { // Next Child to the header will have the same column span as header - $($header).next().children().first().attr('colSpan', $($header).children().length) + $($header).next().children().first().attr('colspan', $($header).children().length) // Setting up table design for the first time const $type = $($header).next().attr(Selector.DATA_SELECTOR)