Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit e22daa8

Browse files
committed
Raised missing notification of dependent value.
And added comment indicating that it will be 🔥 soon.
1 parent 6fc5ff9 commit e22daa8

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/GitHub.App/Models/PullRequestModel.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,15 @@ public string Title
110110
public PullRequestStateEnum State
111111
{
112112
get { return status; }
113-
set { status = value; this.RaisePropertyChange(); this.RaisePropertyChange(nameof(IsOpen)); }
113+
set
114+
{
115+
status = value;
116+
this.RaisePropertyChange();
117+
118+
// TODO: These notifications will be removed once maintainer workflow has been merged to master.
119+
this.RaisePropertyChange(nameof(IsOpen));
120+
this.RaisePropertyChange(nameof(Merged));
121+
}
114122
}
115123

116124
// TODO: Remove these property once maintainer workflow has been merged to master.

0 commit comments

Comments
 (0)