diff --git a/taiga/base/utils/diff.py b/taiga/base/utils/diff.py index cff9b15e..3d4f0aa8 100644 --- a/taiga/base/utils/diff.py +++ b/taiga/base/utils/diff.py @@ -33,4 +33,10 @@ def make_diff(first:dict, second:dict, not_found_value=None) -> dict: if key not in first: diff[key] = (not_found_value, second[key]) + # Remove A -> A changes that usually happens with None -> None + for key, value in list(diff.items()): + frst, scnd = value + if frst == scnd: + del diff[key] + return diff