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:
Salman Ahmed 2021-07-20 02:36:04 +03:00
parent 456f4e6f1f
commit 51b056bf66
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ private void onWikiPageChange(ValueChangedEvent<APIWikiPage> e)
return;
TabControl.Clear();
Current.Value = string.Empty;
Current.Value = null;
TabControl.AddItem(IndexPageString);