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

Commit 1d18a10

Browse files
Making AuthenticationView.password NonSerialized
1 parent a7f5516 commit 1d18a10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ class AuthenticationView : Subview
1919

2020
[SerializeField] private Vector2 scroll;
2121
[SerializeField] private string username = "";
22-
[SerializeField] private string password = "";
2322
[SerializeField] private string two2fa = "";
2423

2524
[NonSerialized] private bool need2fa;
2625
[NonSerialized] private bool busy;
2726
[NonSerialized] private string message;
2827
[NonSerialized] private bool enterPressed;
28+
[NonSerialized] private string password = "";
2929

3030
[NonSerialized] private AuthenticationService authenticationService;
3131
private AuthenticationService AuthenticationService

0 commit comments

Comments
 (0)