We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e08d8e commit 910431aCopy full SHA for 910431a
1 file changed
src/ViewModels/CommitDetail.cs
@@ -53,6 +53,9 @@ public Models.Commit Commit
53
get => _commit;
54
set
55
{
56
+ if (_commit != null && value != null && _commit.SHA.Equals(value.SHA, StringComparison.Ordinal))
57
+ return;
58
+
59
if (SetProperty(ref _commit, value))
60
Refresh();
61
}
0 commit comments