Fix jQuery UI 404 on authoring pages (drop webjar +1 suffix from head.jsp URL) - #185
Open
snoopdave wants to merge 1 commit into
Open
Fix jQuery UI 404 on authoring pages (drop webjar +1 suffix from head.jsp URL)#185snoopdave wants to merge 1 commit into
snoopdave wants to merge 1 commit into
Conversation
…he URL The #180 dependency bump moved the jquery-ui webjar to 1.14.2+1, and that literal version -- plus suffix and all -- was written into the resource URLs in head.jsp. The webjar serves its resources under the plus-free path (META-INF/resources/webjars/jquery-ui/1.14.2/), so /webjars/jquery-ui/1.14.2+1/ 404s, breaking the entry editor's date picker and tag autocomplete and dropping the jQuery UI styling. Point the URLs at 1.14.2; the pom coordinate stays 1.14.2+1 (that is the actual artifact). Regression from 6.1.5 (jquery-ui 1.14.1). Reported by Matt Raible on the 6.1.6 RC2 vote thread. Claude-Session: https://claude.ai/code/session_015X69HHQ5XnjRkJP8ymzwFf
mbien
approved these changes
Sep 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes the regression Matt Raible reported (-1) on the 6.1.6 RC2 vote thread.
The #180 dependency bump moved the
jquery-uiwebjar to1.14.2+1, and that literal version was written into the resource URLs inhead.jsp. The webjar serves its resources under the plus-free path (META-INF/resources/webjars/jquery-ui/1.14.2/), so/webjars/jquery-ui/1.14.2+1/jquery-ui.min.jsand.cssboth 404. That kills the entry editor's date picker and tag autocomplete ($(...).datepicker is not a function,$(...).autocomplete is not a function) and drops the jQuery UI styling.Fix: point the two URLs at
1.14.2. The pom coordinate stays1.14.2+1— that is the real artifact; only the resource path drops the+Nbuild suffix. Verified the shippedjquery-ui-1.14.2+1.jarstores its files underMETA-INF/resources/webjars/jquery-ui/1.14.2/.Regression from 6.1.5 (which was on jquery-ui 1.14.1). Targeted for 6.1.6 RC3.
https://claude.ai/code/session_015X69HHQ5XnjRkJP8ymzwFf