Skip to content
Snippets Groups Projects
Verified Commit 054c0988 authored by Ubbo Veentjer's avatar Ubbo Veentjer
Browse files

Merge branch 'release/4.3.3'

parents 73f968b7 7903f02a
No related branches found
No related tags found
No related merge requests found
Pipeline #471300 passed
......@@ -10,7 +10,7 @@ plugins {
}
group = 'info.textgrid.rep'
version = '4.3.2'
version = '4.3.3'
sourceCompatibility = '17'
bootWar {
......
......@@ -77,8 +77,8 @@ public class BrowseProjectController {
List<ToolLink> viewmodes = new ArrayList<ToolLink>();
viewmodes
.add(new ToolLink(i18n.get("list"), "/projects/?mode=list", mode.equals("list")));
viewmodes.add(new ToolLink(i18n.get("gallery"), "/projects/?mode=gallery",
.add(new ToolLink(i18n.get("list"), "/projects?mode=list", mode.equals("list")));
viewmodes.add(new ToolLink(i18n.get("gallery"), "/projects?mode=gallery",
mode.equals("gallery")));
model.addAttribute("viewmodes", viewmodes);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment