mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
[PE-93] regression: mention users highlight color, reomve bot users from search list (#6258)
* chore: remove bot users in mention * fix: user highlight color --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
This commit is contained in:
committed by
GitHub
parent
9f5def3a6a
commit
d54c1bae03
@@ -26,9 +26,12 @@ export const EditorUserMention: React.FC<Props> = observer((props) => {
|
||||
|
||||
return (
|
||||
<div
|
||||
className={cn("not-prose inline px-1 py-0.5 rounded bg-yellow-500/20 text-yellow-500 no-underline", {
|
||||
"bg-custom-primary-100/20 text-custom-primary-100": id === currentUser?.id,
|
||||
})}
|
||||
className={cn(
|
||||
"not-prose inline px-1 py-0.5 rounded bg-custom-primary-100/20 text-custom-primary-100 no-underline",
|
||||
{
|
||||
"bg-yellow-500/20 text-yellow-500": id === currentUser?.id,
|
||||
}
|
||||
)}
|
||||
>
|
||||
@{userDetails?.member__display_name}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user