From 0f6f20c6291f4cc2175fd66569a15b1ff44fdb12 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Fri, 8 Mar 2019 14:14:58 +0000 Subject: [PATCH] Elastic: Improve selector for table.propform content --- skins/elastic/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skins/elastic/ui.js b/skins/elastic/ui.js index 2f10535a7..aca9a2f60 100644 --- a/skins/elastic/ui.js +++ b/skins/elastic/ui.js @@ -811,7 +811,7 @@ function rcube_elastic_ui() $('table.propform', context).each(function() { var text_rows = 0, form_rows = 0; - $(this).find('> tbody > tr').each(function() { + $(this).find('> tbody > tr, > tr').each(function() { var first, last, row = $(this), row_classes = ['form-group', 'row'], cells = row.children('td');