Skip to content

Commit

Permalink
Hotfix 19263 (#26213)
Browse files Browse the repository at this point in the history
* chore: include hotfix-19263

* fix for hotfix 19263 in ContentSelector.js

* fix content search portlet page reset for hotfix-19263
  • Loading branch information
dsolistorres committed Sep 21, 2023
1 parent 96edfda commit 0424608
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@
fsSteps.set('value', 'catchall');
reloadSchemeStoreFromStructureInode(fsSchemes);
structureChanged(true);
doSearch(null, "<%=orderBy%>");
doSearch(1, "<%=orderBy%>");
}
},
dojo.byId("structSelectBox"));
Expand All @@ -478,7 +478,7 @@
fsSteps.set('value', 'catchall');
reloadStepStoreFromSchemeId (fsSteps)
structureChanged(true);
doSearch(null, "<%=orderBy%>");
doSearch(1, "<%=orderBy%>");
}
},
dojo.byId("schemeSelectBox"));
Expand All @@ -497,7 +497,7 @@
// todo: recargar con step_id
structureChanged(true);
doSearch(null, "<%=orderBy%>");
doSearch(1, "<%=orderBy%>");
}
},
dojo.byId("stepSelectBox"));
Expand Down Expand Up @@ -699,7 +699,7 @@

<dl class="vertical">
<dd>
<button dojoType="dijit.form.Button" id="clearButton" onClick="clearSearch();doSearch();" iconClass="resetIcon" class="dijitButtonFlat">
<button dojoType="dijit.form.Button" id="clearButton" onClick="clearSearch();" iconClass="resetIcon" class="dijitButtonFlat">
<%= UtilMethods.escapeSingleQuotes(LanguageUtil.get(pageContext, "Clear")) %>
</button>
</dd>
Expand Down

0 comments on commit 0424608

Please sign in to comment.