Skip to content

Commit

Permalink
chore: Prepare for icon removal from core
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault authored and judovana committed Jan 22, 2022
1 parent 9393b35 commit c56dfd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/nested_view/NestedView.java
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ void setOwner(ViewGroup owner) {

public String getImage(View w) {
if (w instanceof NestedView) {
return "folder.gif";
return "folder.png";
} else {
return "clipboard.png";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:s="/lib/form">
<l:task icon="images/32x32/folder.gif" href="${rootURL}/${it.viewUrl}newView" title="${%New View}"
<j:jelly xmlns:j="jelly:core" xmlns:l="/lib/layout">
<l:task icon="icon-folder icon-md" href="${rootURL}/${it.viewUrl}newView" title="${%New View}"
permission="${it.CONFIGURE}" />
</j:jelly>

0 comments on commit c56dfd2

Please sign in to comment.