Skip to content

Commit

Permalink
fix: Set business partner on Project Phase.
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwinBetanc0urt committed Oct 16, 2024
1 parent fd8c011 commit a7bee1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,9 @@ export default defineComponent({
})

function handleCurrentChange(newCurrentRow, oldCurrentRow) {
if (isEmptyValue(newCurrentRow)) {
return
}
if (newCurrentRow.is_active === false || newCurrentRow.IsActive === false) {
return
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,9 @@ export default {
methods: {
tableRowClassName,
handleCurrentChange(newCurrentRow, oldCurrentRow) {
if (isEmptyValue(newCurrentRow)) {
return
}
if (newCurrentRow.is_active === false || newCurrentRow.IsActive === false) {
return
}
Expand Down

0 comments on commit a7bee1c

Please sign in to comment.