fix issue with kick from profile

This commit is contained in:
RaidMax
2022-04-28 10:09:25 -05:00
parent 074e36413e
commit 389c687420
4 changed files with 13 additions and 7 deletions

View File

@ -275,6 +275,7 @@
IsButton = true,
Reference = "edit",
Icon = "oi-cog",
EntityId = Model.ClientId
});
}
@ -294,7 +295,8 @@
Title = isFlagged ? "Unflag" : "Flag",
IsButton = true,
Reference = isFlagged ? "unflag" : "flag",
Icon = "oi-flag"
Icon = "oi-flag",
EntityId = Model.ClientId
});
}
@ -306,6 +308,7 @@
IsButton = true,
Reference = "kick",
Icon = "oi-circle-x",
EntityId = Model.ClientId
});
}
@ -317,6 +320,7 @@
IsButton = true,
Reference = "ban",
Icon = "oi-lock-unlocked",
EntityId = Model.ClientId
});
}
@ -328,6 +332,7 @@
IsButton = true,
Reference = "unban",
Icon = "oi-lock-locked",
EntityId = Model.ClientId
});
}
}