diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-05-29 17:33:46 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-05-29 17:33:46 -0400 |
| commit | 2c2dff72e45c64dbbb81bb28e30dc795f6958565 (patch) | |
| tree | 1def6a70f34695b9ee5abaccc89dd15d57c43b11 /packages/frontend/src/pages | |
| parent | merge: Merge stable into develop (!1052) (diff) | |
| download | sharkey-2c2dff72e45c64dbbb81bb28e30dc795f6958565.tar.gz sharkey-2c2dff72e45c64dbbb81bb28e30dc795f6958565.tar.bz2 sharkey-2c2dff72e45c64dbbb81bb28e30dc795f6958565.zip | |
remove duplicate horizontal swipe
Diffstat (limited to 'packages/frontend/src/pages')
| -rw-r--r-- | packages/frontend/src/pages/instance-info.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/instance-info.vue b/packages/frontend/src/pages/instance-info.vue index 479774faef..9b63752957 100644 --- a/packages/frontend/src/pages/instance-info.vue +++ b/packages/frontend/src/pages/instance-info.vue @@ -6,7 +6,8 @@ SPDX-License-Identifier: AGPL-3.0-only <template> <PageWithHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs" :swipable="true"> <div v-if="instance" class="_spacer" style="--MI_SPACER-w: 600px; --MI_SPACER-min: 16px; --MI_SPACER-max: 32px;"> - <MkSwiper v-model:tab="tab" :tabs="headerTabs"> + <!-- This empty div is preserved to avoid merge conflicts --> + <div> <div v-if="tab === 'overview'" class="_gaps_m"> <div class="fnfelxur"> <img :src="faviconUrl" alt="" class="icon"/> @@ -165,7 +166,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkObjectView tall :value="instance"> </MkObjectView> </div> - </MkSwiper> + </div> </div> </PageWithHeader> </template> |