comparison client/src/components/Contextbox.vue @ 5454:b4216db975e3 uiimprovements

fix layout for contextbox content.
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 14 Jul 2021 16:21:27 +0200
parents 62caee603217
children 7768f14f6535
comparison
equal deleted inserted replaced
5453:4722d392aa1a 5454:b4216db975e3
1 <template> 1 <template>
2 <div :class="style"> 2 <div :class="style">
3 <Bottlenecks v-if="contextBoxContent === 'bottlenecks'" /> 3 <Bottlenecks
4 style="min-width: 650px"
5 v-if="contextBoxContent === 'bottlenecks'"
6 />
4 <keep-alive> 7 <keep-alive>
5 <Staging v-if="contextBoxContent === 'staging'" /> 8 <Staging
6 <Stretches v-if="contextBoxContent === 'stretches'" /> 9 style="min-width: 850px"
7 <Sections v-if="contextBoxContent === 'sections'" /> 10 v-if="contextBoxContent === 'staging'"
8 <ImportConfiguration v-if="contextBoxContent === 'importconfiguration'" /> 11 />
12 <Stretches
13 style="min-width: 850px"
14 v-if="contextBoxContent === 'stretches'"
15 />
16 <Sections
17 style="min-width: 850px"
18 v-if="contextBoxContent === 'sections'"
19 />
20 <ImportConfiguration
21 style="min-width: 850px"
22 v-if="contextBoxContent === 'importconfiguration'"
23 />
9 </keep-alive> 24 </keep-alive>
10 <ImportOverview v-if="contextBoxContent === 'importoverview'" /> 25 <ImportOverview
26 style="min-width: 850px"
27 v-if="contextBoxContent === 'importoverview'"
28 />
11 </div> 29 </div>
12 </template> 30 </template>
13 31
14 <script> 32 <script>
15 /* This is Free Software under GNU Affero General Public License v >= 3.0 33 /* This is Free Software under GNU Affero General Public License v >= 3.0