Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Fix instance user view model icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberboss committed Jan 2, 2021
1 parent c46ae93 commit 623a24b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public enum InstanceUserCommand

public string Title => rightsProvider == this ? "Current " + (isForGroup ? "Group" : "User") : displayName;

public string Icon => isForGroup ? "resm:Tgstation.Server.ControlPanel.Assets.user.png" : "resm:Tgstation.Server.ControlPanel.Assets.group.png";
public string Icon => !isForGroup ? "resm:Tgstation.Server.ControlPanel.Assets.user.png" : "resm:Tgstation.Server.ControlPanel.Assets.group.png";

public string DeleteText => confirmingDelete ? "Confirm?" : "Delete";

Expand Down

0 comments on commit 623a24b

Please sign in to comment.