diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-20 21:04:37 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-20 21:04:37 +0900 |
| commit | ce858a676be7ec70566f186e1a061273975b04e1 (patch) | |
| tree | 00269a9c0691707ed40c76c0e16f024c2ab7927b /packages/frontend/src/pages/flash/flash-edit.vue | |
| parent | follow up of 1fd87bd2e46eb50f718f95f94d844fe694e43a53 (diff) | |
| download | sharkey-ce858a676be7ec70566f186e1a061273975b04e1.tar.gz sharkey-ce858a676be7ec70566f186e1a061273975b04e1.tar.bz2 sharkey-ce858a676be7ec70566f186e1a061273975b04e1.zip | |
refactor(frontend): use PageWithHeader instead of MkStickyContainer+MkPageHeader combination
Diffstat (limited to 'packages/frontend/src/pages/flash/flash-edit.vue')
| -rw-r--r-- | packages/frontend/src/pages/flash/flash-edit.vue | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/frontend/src/pages/flash/flash-edit.vue b/packages/frontend/src/pages/flash/flash-edit.vue index 16eeba7eea..c2f66c0e4d 100644 --- a/packages/frontend/src/pages/flash/flash-edit.vue +++ b/packages/frontend/src/pages/flash/flash-edit.vue @@ -4,8 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only --> <template> -<MkStickyContainer> - <template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template> +<PageWithHeader :actions="headerActions" :tabs="headerTabs"> <MkSpacer :contentMax="700"> <div class="_gaps"> <MkInput v-model="title"> @@ -37,7 +36,7 @@ SPDX-License-Identifier: AGPL-3.0-only </MkSpacer> </div> </template> -</MkStickyContainer> +</PageWithHeader> </template> <script lang="ts" setup> |