Skip to content

Commit

Permalink
fix: modify default move project(cuixueshe#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
1172208932 committed Feb 14, 2023
1 parent 5c348ef commit bce7792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/src/composable/useTaskRightContextMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function useTaskRightContextMenu() {
function getMoveListProjects() {
return taskStore.listProjects.map((projectItem) => {
const isCurrentProject
= taskStore.currentActiveTask?.project!.id === projectItem.id
= taskStore.currentActiveProject.id === projectItem.id
return {
label: isCurrentProject
? h(
Expand Down

0 comments on commit bce7792

Please sign in to comment.