Enhance project management UI and handle bulk changes (#186)
* enable hold to select, remove once x1 chip, unify reschedule modal * project title still show fromwhen login from different account it's was cache in local storage so makdikngsure we do clean up * Fix: show the button for creating task on the modal instead of the panel * Bulk moving project, Move the button in scanner to the modal * - Handle bulk change for projects - allow no assignee being selected - choreactionmenu become modal on mobile
This commit is contained in:
@@ -222,7 +222,10 @@ const ProjectView = () => {
|
||||
const { data: userProfile } = useUserProfile()
|
||||
const { data: chores = { res: [] } } = useChores(false) // false to exclude archived
|
||||
const { data: projectsData = [], isLoading: projectsLoading } = useProjects()
|
||||
const { setSelectedProjectWithCache } = useProjectFilter(projectsData)
|
||||
const { setSelectedProjectWithCache } = useProjectFilter(
|
||||
projectsData,
|
||||
!projectsLoading,
|
||||
)
|
||||
const navigate = useNavigate()
|
||||
|
||||
const [userProjects, setUserProjects] = useState([])
|
||||
|
||||
Reference in New Issue
Block a user