Skip to content

Commit

Permalink
Fix #2542 by not including Instance.ontent in hash code method.
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij committed Aug 22, 2024
1 parent 621aa4e commit 7ee482b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Components/Dialog/Services/DialogReference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public DialogReference(string dialogInstanceId, IDialogService dialogService)

public DialogInstance Instance { get; set; } = default!;

internal string GetKey() => $"{Instance.Parameters?.GetHashCode() ?? 0}_{Instance.Content?.GetHashCode() ?? 0}";
internal string GetKey() => $"{Instance.Parameters?.GetHashCode() ?? 0}";

public string Id { get; }

Expand Down

0 comments on commit 7ee482b

Please sign in to comment.