Skip to content

Commit

Permalink
Merge pull request #547 from asherkhb/update_chgrp_img_path
Browse files Browse the repository at this point in the history
Fix image path resolution in ome.chgrp.js
  • Loading branch information
will-moore authored Apr 8, 2024
2 parents bb3ae5c + 0d40a57 commit 0e4013c
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 0e4013c

Please sign in to comment.