mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-25 11:05:07 +02:00
TSK-507: Assignee box Direction line is hidden to early (#2485)
Signed-off-by: Denis Maslennikov <denis.maslennikov@gmail.com>
This commit is contained in:
@@ -75,11 +75,12 @@
|
||||
}
|
||||
|
||||
const projectsInfo = [
|
||||
{ id: null, icon: tracker.icon.Projects, label: tracker.string.NoProject },
|
||||
{ id: null, icon: tracker.icon.Projects, label: tracker.string.NoProject, isSelected: !selectedProject },
|
||||
...rawProjects.map((p) => ({
|
||||
id: p._id,
|
||||
icon: p.icon,
|
||||
text: p.label
|
||||
text: p.label,
|
||||
isSelected: selectedProject ? p._id === selectedProject._id : false
|
||||
}))
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user