Skip to content

Commit

Permalink
Fix image path resolution in ome.chgrp.js
Browse files Browse the repository at this point in the history
  • Loading branch information
asherkhb authored Mar 26, 2024
1 parent bb3ae5c commit 0d40a57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions omeroweb/webclient/static/webclient/javascript/ome.chgrp.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ $(function() {
};

var permsIcon = function(perms) {
if (perms.write) return static_url + "/image/group_green16.png";
if (perms.annotate) return static_url + "/image/group_orange16.png";
if (perms.read) return static_url + "/image/group_red16.png";
return static_url + "/image/personal16.png";
if (perms.write) return static_url + "image/group_green16.png";
if (perms.annotate) return static_url + "image/group_orange16.png";
if (perms.read) return static_url + "image/group_red16.png";
return static_url + "image/personal16.png";
};

var checkFilesetSplit = function checkFilesetSplit () {
Expand Down

0 comments on commit 0d40a57

Please sign in to comment.