Skip to content

Commit

Permalink
fix: Fix Missing Quote in Deprecated gtmpl files - EXO-76079
Browse files Browse the repository at this point in the history
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
  • Loading branch information
boubaker authored and rdenarie committed Dec 19, 2024
1 parent bafb6ea commit 2b719fc
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
uicomponent.setId(componentId.substring("UIContainer-".length()));
}
%>
<div class="UIContainer UIResponsiveColumnGroupContainer <%=uiComponentClass%> id="${uicomponent.id}" ${cssStyle}>
<div class="UIContainer UIResponsiveColumnGroupContainer <%=uiComponentClass%>" id="${uicomponent.id}" ${cssStyle}>
<div class="NormalContainerBlock UIComponentBlock">
<div class="VIEW-CONTAINER VIEW-BLOCK">
<div class="UIIntermediateContainer">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass();
%>
<div
class="UIContainer UITableColumnContainer UIResponsiveTable66ColumnContainer <%=uiComponentClass%> id="${uicomponent.id}">
class="UIContainer UITableColumnContainer UIResponsiveTable66ColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
<div class="NormalContainerBlock UIComponentBlock">
<div class="VIEW-CONTAINER VIEW-BLOCK">
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass();
%>
<div
class="UIContainer UITableColumnContainer UIResponsiveTableColumnContainer <%=uiComponentClass%> id="${uicomponent.id}">
class="UIContainer UITableColumnContainer UIResponsiveTableColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
<div class="NormalContainerBlock UIComponentBlock">
<div class="VIEW-CONTAINER VIEW-BLOCK">
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass();
%>
<div
class="UIContainer UITableColumnContainer UIResponsiveTable33ColumnContainer <%=uiComponentClass%> id="${uicomponent.id}">
class="UIContainer UITableColumnContainer UIResponsiveTable33ColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
<div class="NormalContainerBlock UIComponentBlock">
<div class="VIEW-CONTAINER VIEW-BLOCK">
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass();
%>
<div
class="UIContainer UITableColumnContainer UIResponsiveTableThreeColumnContainer <%=uiComponentClass%> id="${uicomponent.id}">
class="UIContainer UITableColumnContainer UIResponsiveTableThreeColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
<div class="NormalContainerBlock UIComponentBlock">
<div class="VIEW-CONTAINER VIEW-BLOCK">
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass();
%>
<div
class="UIContainer UITableColumnContainer UIResponsiveTableTwoColumnContainer <%=uiComponentClass%> id="${uicomponent.id}">
class="UIContainer UITableColumnContainer UIResponsiveTableTwoColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
<div class="NormalContainerBlock UIComponentBlock">
<div class="VIEW-CONTAINER VIEW-BLOCK">
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass();
%>
<div
class="UIContainer UITableColumnContainer UISwitchingContainer <%=uiComponentClass%> id="${uicomponent.id}">
class="UIContainer UITableColumnContainer UISwitchingContainer <%=uiComponentClass%>" id="${uicomponent.id}">
<div class="NormalContainerBlock UIComponentBlock">
<div class="VIEW-CONTAINER VIEW-BLOCK">
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass();
%>
<div
class="UIContainer UITableColumnContainer <%=uiComponentClass%> id="${uicomponent.id}">
class="UIContainer UITableColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
<div class="NormalContainerBlock UIComponentBlock">
<div class="VIEW-CONTAINER VIEW-BLOCK">
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
String uiComponentClass = uicomponent.getCssClass() == null ? "" : uicomponent.getCssClass();
%>
<div
class="UIContainer UITableColumnContainer <%=uiComponentClass%> id="${uicomponent.id}">
class="UIContainer UITableColumnContainer <%=uiComponentClass%>" id="${uicomponent.id}">
<div class="NormalContainerBlock UIComponentBlock">
<div class="VIEW-CONTAINER VIEW-BLOCK">
<div>
Expand Down

0 comments on commit 2b719fc

Please sign in to comment.