Skip to content

Commit

Permalink
chore: fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyme committed Feb 27, 2025
1 parent 47b4d9b commit d341f74
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ async function onQueryRolesEditClicked() {
}
</script>

<style module>
<style lang="scss" module>
.root {
position: relative;
}
Expand Down
6 changes: 3 additions & 3 deletions packages/frontend/src/pages/admin/custom-emojis-manager2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ const headerTabs = computed(() => [{
title: i18n.ts.remote,
}]);

definePageMetadata(computed(() => ({
definePageMetadata(() => ({
title: i18n.ts.customEmojis,
icon: 'ti ti-icons',
needWideArea: true,
})));
}));
</script>

<style lang="css" module>
<style lang="scss" module>
.local {
height: calc(100dvh - var(--MI-stickyTop) - var(--MI-stickyBottom));
overflow: clip;
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/pages/lookup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ const headerActions = computed(() => []);

const headerTabs = computed(() => []);

definePageMetadata({
definePageMetadata(() => ({
title: i18n.ts.lookup,
icon: 'ti ti-world-search',
});
}));
</script>
4 changes: 2 additions & 2 deletions packages/frontend/src/pages/preview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const headerActions = computed(() => []);

const headerTabs = computed(() => []);

definePageMetadata(computed(() => ({
definePageMetadata(() => ({
title: i18n.ts.preview,
icon: 'ti ti-eye',
})));
}));
</script>

0 comments on commit d341f74

Please sign in to comment.