mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 01:47:39 -07:00
[client] Fix search filter syntax window replacing the page title
This commit is contained in:
parent
534bc5cc98
commit
efde111779
1 changed files with 4 additions and 11 deletions
|
@ -81,20 +81,14 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { defineComponent } from "vue";
|
|
||||||
import MkTextarea from "@/components/form/textarea.vue";
|
|
||||||
import { definePageMetadata } from "@/scripts/page-metadata";
|
|
||||||
import { i18n } from "@/i18n";
|
import { i18n } from "@/i18n";
|
||||||
import { instance } from "@/instance";
|
import MkSpacer from "@/components/global/MkSpacer.vue";
|
||||||
|
import MkPageHeader from "@/components/global/MkPageHeader.vue";
|
||||||
|
import MkStickyContainer from "@/components/global/MkStickyContainer.vue";
|
||||||
|
|
||||||
defineProps<{
|
defineProps<{
|
||||||
popup?: boolean;
|
popup?: boolean;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
definePageMetadata({
|
|
||||||
title: i18n.ts._filters._dialog.title,
|
|
||||||
icon: "ph-funnel ph-bold ph-lg",
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -114,8 +108,7 @@ definePageMetadata({
|
||||||
> .content {
|
> .content {
|
||||||
> p {
|
> p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 16px;
|
padding: 0 16px 16px;
|
||||||
padding-top: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
> .preview {
|
> .preview {
|
||||||
|
|
Loading…
Reference in a new issue