Use empty string as default

This commit is contained in:
ansel 2023-01-11 02:26:25 +03:00
parent 23a78e6fad
commit b38cf8c56c

View File

@ -30,7 +30,7 @@ namespace osu.Game.Overlays.Comments
protected FillFlowContainer ButtonsContainer { get; private set; } = null!;
protected readonly Bindable<string> Current = new Bindable<string>();
protected readonly Bindable<string> Current = new Bindable<string>(string.Empty);
private RoundedButton commitButton = null!;
private LoadingSpinner loadingSpinner = null!;