From d477c7270c90b190ed82b13f48f39a05d83503d2 Mon Sep 17 00:00:00 2001 From: crupest Date: Thu, 21 Sep 2023 23:49:12 +0800 Subject: Fix #1394. --- FrontEnd/src/components/AppBar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'FrontEnd/src/components/AppBar.tsx') diff --git a/FrontEnd/src/components/AppBar.tsx b/FrontEnd/src/components/AppBar.tsx index d40c8105..6ea8bdac 100644 --- a/FrontEnd/src/components/AppBar.tsx +++ b/FrontEnd/src/components/AppBar.tsx @@ -37,7 +37,8 @@ function AppBarNavLink({ className={({ isActive }) => classnames(className, isActive && "active")} onClick={onClick} > - {children != null ? children : c(label)} + {children} + {label && c(label)} ); } -- cgit v1.2.3