Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 989ba4c

Browse files
Merge branch 'fixes/favorites-list-can-be-null' into fixes/publish-description-missing
2 parents 1868d98 + 3d9a83a commit 989ba4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UnityExtension/Assets/Editor/GitHub.Unity/UI/BranchesView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class BranchesView : Subview
5252
[SerializeField] private List<Remote> remotes = new List<Remote>();
5353
[SerializeField] private Vector2 scroll;
5454
[SerializeField] private BranchTreeNode selectedNode;
55-
private List<string> favoritesList;
55+
[SerializeField] private List<string> favoritesList = new List<string>();
5656

5757
public override void InitializeView(IView parent)
5858
{

0 commit comments

Comments
 (0)