diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-05-29 23:13:33 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-05-29 23:13:33 -0400 |
| commit | f799835ec733ba04e93c208d225d5afb3db0c1ea (patch) | |
| tree | 4007b1321361d1f9dbc8f0832f3ee341d9217ff3 /packages/frontend/src/pages/instance-info.vue | |
| parent | all MkFolder to not have a sticky header (diff) | |
| download | sharkey-f799835ec733ba04e93c208d225d5afb3db0c1ea.tar.gz sharkey-f799835ec733ba04e93c208d225d5afb3db0c1ea.tar.bz2 sharkey-f799835ec733ba04e93c208d225d5afb3db0c1ea.zip | |
fix Z-fighting in report UI caused by sticky header
Diffstat (limited to 'packages/frontend/src/pages/instance-info.vue')
| -rw-r--r-- | packages/frontend/src/pages/instance-info.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/pages/instance-info.vue b/packages/frontend/src/pages/instance-info.vue index 228ad6da33..6757683a0f 100644 --- a/packages/frontend/src/pages/instance-info.vue +++ b/packages/frontend/src/pages/instance-info.vue @@ -27,7 +27,7 @@ SPDX-License-Identifier: AGPL-3.0-only <SkBadgeStrip v-if="badges.length > 0" :badges="badges"></SkBadgeStrip> - <MkFolder> + <MkFolder :sticky="false"> <template #icon><i class="ph-list-bullets ph-bold ph-lg"></i></template> <template #label>{{ i18n.ts.details }}</template> <div style="display: flex; flex-direction: column; gap: 1em;"> @@ -82,7 +82,7 @@ SPDX-License-Identifier: AGPL-3.0-only </div> </MkFolder> - <MkFolder> + <MkFolder :sticky="false"> <template #label>{{ i18n.ts.wellKnownResources }}</template> <template #icon><i class="ph-network ph-bold ph-lg"></i></template> <ul :class="$style.linksList" class="_gaps_s"> @@ -95,7 +95,7 @@ SPDX-License-Identifier: AGPL-3.0-only </ul> </MkFolder> - <MkFolder v-if="iAmModerator" :defaultOpen="moderationNote.length > 0"> + <MkFolder v-if="iAmModerator" :defaultOpen="moderationNote.length > 0" :sticky="false"> <template #icon><i class="ph-stamp ph-bold ph-lg"></i></template> <template #label>{{ i18n.ts.moderationNote }}</template> <MkTextarea v-model="moderationNote" manualSave> |