fix: add loading state check to prevent rendering issues in SidePanelLayout
This commit is contained in:
parent
12c3290f19
commit
6f49573f2f
@ -1,5 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="sections flex flex-col overflow-y-auto">
|
<div
|
||||||
|
v-if="!document.get.loading"
|
||||||
|
class="sections flex flex-col overflow-y-auto"
|
||||||
|
>
|
||||||
<template v-for="(section, i) in _sections" :key="section.name">
|
<template v-for="(section, i) in _sections" :key="section.name">
|
||||||
<div v-if="section.visible" class="section flex flex-col">
|
<div v-if="section.visible" class="section flex flex-col">
|
||||||
<div
|
<div
|
||||||
@ -55,10 +58,7 @@
|
|||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
<div
|
<div class="flex items-center justify-between w-[65%]">
|
||||||
v-if="!document.get.loading"
|
|
||||||
class="flex items-center justify-between w-[65%]"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
class="grid min-h-[28px] flex-1 items-center overflow-hidden text-base"
|
class="grid min-h-[28px] flex-1 items-center overflow-hidden text-base"
|
||||||
>
|
>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user