Skip to content

Commit fb046d5

Browse files
committed
enhance: cache last status of repository for better experience
Signed-off-by: leo <longshuang@msn.cn>
1 parent b412c9a commit fb046d5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ViewModels/RepositoryNode.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,10 @@ public int Depth
6464
set;
6565
} = 0;
6666

67-
[JsonIgnore]
6867
public Models.RepositoryStatus Status
6968
{
7069
get => _status;
71-
private set => SetProperty(ref _status, value);
70+
set => SetProperty(ref _status, value);
7271
}
7372

7473
public List<RepositoryNode> SubNodes

0 commit comments

Comments
 (0)