From 2b719fc35250aa27b4a7e4235b7ef3c660c87350 Mon Sep 17 00:00:00 2001 From: Boubaker Khanfir Date: Wed, 18 Dec 2024 15:47:39 +0100 Subject: [PATCH] fix: Fix Missing Quote in Deprecated gtmpl files - EXO-76079 Prior to this change, the retrieved DOM from legacy gtmpl files is missing a double quote at the end of HTML class attribute definition. This change will fix it by introducing the missing double quote. Resolves Meeds-io/meeds#2690 --- .../webui/container/UIResponsiveColumnGroupContainer.gtmpl | 2 +- .../container/UIResponsiveTableBigSmallColumnContainer.gtmpl | 2 +- .../webui/container/UIResponsiveTableColumnContainer.gtmpl | 2 +- .../container/UIResponsiveTableSmallBigColumnContainer.gtmpl | 2 +- .../webui/container/UIResponsiveTableThreeColumnContainer.gtmpl | 2 +- .../webui/container/UIResponsiveTableTwoColumnContainer.gtmpl | 2 +- .../groovy/portal/webui/container/UISwitchingContainer.gtmpl | 2 +- .../portal/webui/container/UITableAutofitColumnContainer.gtmpl | 2 +- .../groovy/portal/webui/container/UITableColumnContainer.gtmpl | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveColumnGroupContainer.gtmpl b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveColumnGroupContainer.gtmpl index fd375941e6..558ce21777 100644 --- a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveColumnGroupContainer.gtmpl +++ b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveColumnGroupContainer.gtmpl @@ -15,7 +15,7 @@ uicomponent.setId(componentId.substring("UIContainer-".length())); } %> -
+
diff --git a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableBigSmallColumnContainer.gtmpl b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableBigSmallColumnContainer.gtmpl index 5a5cdcfb58..79fc39b865 100644 --- a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableBigSmallColumnContainer.gtmpl +++ b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableBigSmallColumnContainer.gtmpl @@ -13,7 +13,7 @@ String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass(); %>
+ class="UIContainer UITableColumnContainer UIResponsiveTable66ColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
diff --git a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableColumnContainer.gtmpl b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableColumnContainer.gtmpl index 043f504a3a..e13009c39b 100644 --- a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableColumnContainer.gtmpl +++ b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableColumnContainer.gtmpl @@ -13,7 +13,7 @@ String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass(); %>
+ class="UIContainer UITableColumnContainer UIResponsiveTableColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
diff --git a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableSmallBigColumnContainer.gtmpl b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableSmallBigColumnContainer.gtmpl index 3681c04d27..8aa8bf01cd 100644 --- a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableSmallBigColumnContainer.gtmpl +++ b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableSmallBigColumnContainer.gtmpl @@ -13,7 +13,7 @@ String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass(); %>
+ class="UIContainer UITableColumnContainer UIResponsiveTable33ColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
diff --git a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableThreeColumnContainer.gtmpl b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableThreeColumnContainer.gtmpl index 4c565624de..d1ba4be3d7 100644 --- a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableThreeColumnContainer.gtmpl +++ b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableThreeColumnContainer.gtmpl @@ -13,7 +13,7 @@ String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass(); %>
+ class="UIContainer UITableColumnContainer UIResponsiveTableThreeColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
diff --git a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableTwoColumnContainer.gtmpl b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableTwoColumnContainer.gtmpl index 9b1b40a84d..441d0fd8c9 100644 --- a/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableTwoColumnContainer.gtmpl +++ b/web/portal/src/main/webapp/groovy/portal/webui/container/UIResponsiveTableTwoColumnContainer.gtmpl @@ -13,7 +13,7 @@ String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass(); %>
+ class="UIContainer UITableColumnContainer UIResponsiveTableTwoColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
diff --git a/web/portal/src/main/webapp/groovy/portal/webui/container/UISwitchingContainer.gtmpl b/web/portal/src/main/webapp/groovy/portal/webui/container/UISwitchingContainer.gtmpl index d6d7f58fc9..b35fa8c755 100644 --- a/web/portal/src/main/webapp/groovy/portal/webui/container/UISwitchingContainer.gtmpl +++ b/web/portal/src/main/webapp/groovy/portal/webui/container/UISwitchingContainer.gtmpl @@ -15,7 +15,7 @@ String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass(); %>
+ class="UIContainer UITableColumnContainer UISwitchingContainer <%=uiComponentClass%>" id="${uicomponent.id}">
diff --git a/web/portal/src/main/webapp/groovy/portal/webui/container/UITableAutofitColumnContainer.gtmpl b/web/portal/src/main/webapp/groovy/portal/webui/container/UITableAutofitColumnContainer.gtmpl index ea8d539ac9..e93a53d7cd 100644 --- a/web/portal/src/main/webapp/groovy/portal/webui/container/UITableAutofitColumnContainer.gtmpl +++ b/web/portal/src/main/webapp/groovy/portal/webui/container/UITableAutofitColumnContainer.gtmpl @@ -13,7 +13,7 @@ String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass(); %>
+ class="UIContainer UITableColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
diff --git a/web/portal/src/main/webapp/groovy/portal/webui/container/UITableColumnContainer.gtmpl b/web/portal/src/main/webapp/groovy/portal/webui/container/UITableColumnContainer.gtmpl index d9d877415b..2329281616 100644 --- a/web/portal/src/main/webapp/groovy/portal/webui/container/UITableColumnContainer.gtmpl +++ b/web/portal/src/main/webapp/groovy/portal/webui/container/UITableColumnContainer.gtmpl @@ -13,7 +13,7 @@ String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass(); %>
+ class="UIContainer UITableColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">