Skip to content

Commit

Permalink
chore: formatting fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
devtobi committed Jun 23, 2024
1 parent 6cd805a commit eadc70f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions packages/cv-wrapper/src/components/CvInformationDialogButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
maximizable
:contentStyle="{ height: '30rem' }"
:style="{ width: '50rem' }"
:pt="accessibilityOptions"
:pt="accessibilityOptions"
>
<template #header>
<div class="flex align-items-center">
Expand Down Expand Up @@ -57,11 +57,11 @@
<script setup lang="ts">
import { storeToRefs } from 'pinia';
import { PrimeIcons } from 'primevue/api';
import { DialogPassThroughOptions } from 'primevue/dialog';
import { ref } from 'vue';
import { useI18n } from 'vue-i18n';
import { usePWAStore } from '@/stores/usePWAStore';
import { DialogPassThroughOptions } from 'primevue/dialog';
const showDialog = ref(false);
Expand All @@ -76,10 +76,10 @@
};
const accessibilityOptions: DialogPassThroughOptions = {
maximizableButton: {
ariaHidden: true
}
}
maximizableButton: {
ariaHidden: true,
},
};
const { t } = useI18n();
</script>
4 changes: 2 additions & 2 deletions packages/cv-wrapper/src/components/CvMenubar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<menubar
:model="menuLinksLocalized"
class="px-3"
role="navigation"
role="navigation"
>
<template #start>
<div class="flex flex-row justify-content-center mr-8">
Expand All @@ -26,7 +26,7 @@
:title="item.label as string"
target="_blank"
v-bind="props.action"
aria-hidden="false"
aria-hidden="false"
>
<Button
:icon="item.icon"
Expand Down

0 comments on commit eadc70f

Please sign in to comment.