From df13336615d794bdbd325b1fe29e7c655b2934e3 Mon Sep 17 00:00:00 2001 From: TLH Date: Thu, 15 Sep 2022 13:08:19 +0900 Subject: [PATCH] Switch title field between dropdown and textbox --- TaikoWebUI/Pages/Profile.razor | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/TaikoWebUI/Pages/Profile.razor b/TaikoWebUI/Pages/Profile.razor index 7991626..04f3ac5 100644 --- a/TaikoWebUI/Pages/Profile.razor +++ b/TaikoWebUI/Pages/Profile.razor @@ -20,7 +20,15 @@ - + @if (EnterTextDirectly) + { + + } + else + { + + } + Enter Text Directly @@ -206,4 +214,8 @@ + + @code { + private bool EnterTextDirectly; + } } \ No newline at end of file