mirror of https://github.com/ppy/osu
Fix `WikiHeader` setting `string.Empty` rather than `null` on breadcrumb
That's supposed to be fixed already in the base PR, but somehow it continued to exist here.
This commit is contained in:
parent
456f4e6f1f
commit
51b056bf66
|
@ -38,7 +38,7 @@ private void onWikiPageChange(ValueChangedEvent<APIWikiPage> e)
|
|||
return;
|
||||
|
||||
TabControl.Clear();
|
||||
Current.Value = string.Empty;
|
||||
Current.Value = null;
|
||||
|
||||
TabControl.AddItem(IndexPageString);
|
||||
|
||||
|
|
Loading…
Reference in New Issue