mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-30 20:18:27 +00:00
fix(projects): None type handling while updating tasks
This commit is contained in:
@@ -162,7 +162,7 @@ class Project(Document):
|
||||
def is_row_updated(self, row, existing_task_data, fields):
|
||||
if self.get("__islocal") or not existing_task_data: return True
|
||||
|
||||
d = existing_task_data.get(row.task_id)
|
||||
d = existing_task_data.get(row.task_id, {})
|
||||
|
||||
for field in fields:
|
||||
if row.get(field) != d.get(field):
|
||||
|
||||
Reference in New Issue
Block a user