Commit 13c3a131 authored by isstuev's avatar isstuev

hide tabs menu when loading

parent ca10f8ab
...@@ -80,6 +80,10 @@ const AdaptiveTabsList = (props: Props) => { ...@@ -80,6 +80,10 @@ const AdaptiveTabsList = (props: Props) => {
> >
{ tabsList.map((tab, index) => { { tabsList.map((tab, index) => {
if (!tab.id) { if (!tab.id) {
if (props.isLoading) {
return null;
}
return ( return (
<TabsMenu <TabsMenu
key="menu" key="menu"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment