Skip to content

Commit 4c793b4

Browse files
committed
Fix build after merge from 25.3
1 parent ad1d5a9 commit 4c793b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

panoramapublic/src/org/labkey/panoramapublic/PanoramaPublicController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2962,7 +2962,7 @@ private static DOM.Renderable getSubfolderListHtml(Container parent, List<Contai
29622962
children.stream()
29632963
.filter(child -> !child.equals(parent))
29642964
.map(child -> LI(
2965-
LinkBuilder.simpleLink(parent.getParsedPath().relativize(child.getParsedPath()).toString(), PageFlowUtil.urlProvider(ProjectUrls.class).getBeginURL(child)).clearClasses()
2965+
LinkBuilder.simpleLink(parent.getParsedPath().relativize(child.getParsedPath()).toString(), PageFlowUtil.urlProvider(ProjectUrls.class).getBeginURL(child))
29662966
))
29672967
);
29682968
}
@@ -5466,12 +5466,12 @@ public ModelAndView getView(ExperimentIdForm form, BindException errors) throws
54665466
{
54675467
return new HtmlView(
54685468
DIV(
5469-
new Button.ButtonBuilder("Post to Primary Account")
5469+
new ButtonBuilder("Post to Primary Account")
54705470
.href(new ActionURL(PostToBlueskyAction.class, getContainer())
54715471
.addParameter("id", form.getId()))
54725472
.build(),
54735473
HtmlString.NBSP,
5474-
new Button.ButtonBuilder("Post to Test Account")
5474+
new ButtonBuilder("Post to Test Account")
54755475
.href(new ActionURL(PostToBlueskyAction.class, getContainer())
54765476
.addParameter("id", form.getId())
54775477
.addParameter("testAccount", Boolean.TRUE))

0 commit comments

Comments
 (0)