-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FIXED JENKINS-37814] make the icon of the script console configurable #2528
Conversation
<l:layout norefresh="true" permission="${h.RUN_SCRIPTS}"> | ||
<st:include page="sidepanel.jelly" /> | ||
|
||
<l:main-panel> | ||
<h1><img src="${imagesURL}/48x48/${it.icon}" width="48" height="48" alt=""/> ${%Script Console}</h1> | ||
<j:if test="${it.icon == null}"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<j:choose>
would be better here.
The approach is a bit unreliable since the plugin providing icon may have 48x48 one. But 👍 since it does not increase the technical debt and fixes the problem stated in JENKINS-37814. |
Is this a recent regression? If so, from when? |
Maybe d8b1111 (but it would mean it have never worked) |
I agree with Oleg, I think it has never worked |
JENKINS-37814
discussion of the first PR (reverted) #2522
@oleg-nenashev @Vlatombe how about this approach?