Skip to content

Commit a78d1a6

Browse files
authored
Merge pull request #1123 from hugoattal/fix-titletag
fix: correction de l'import du type TitleTag
2 parents 3c8804c + 6d23fe6 commit a78d1a6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/components/DsfrAccordion/DsfrAccordion.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { TitleTag } from '@/common-types'
1+
import type { TitleTag } from '../../common-types'
22

33
export type DsfrAccordionProps = {
44
id?: string

src/components/DsfrAlert/DsfrAlert.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { TitleTag } from '@/common-types'
1+
import type { TitleTag } from '../../common-types'
22

33
export type DsfrAlertType = 'error' | 'success' | 'warning' | 'info'
44

src/components/DsfrAlert/docs-demo/DsfrAlertDemo.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ref } from 'vue'
44
import type { DsfrAlertType } from '../DsfrAlert.vue'
55
import DsfrAlert from '../DsfrAlert.vue'
66
7-
import type { TitleTag } from '@/common-types'
7+
import type { TitleTag } from '../../common-types'
88
99
const defaultAlerts: {
1010
[key: string]: {

src/components/DsfrFooter/DsfrFooterPartners.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts" setup>
2-
import type { TitleTag } from '@/common-types'
2+
import type { TitleTag } from '../../common-types'
33
44
export type DsfrFooterPartner = {
55
href: string

0 commit comments

Comments
 (0)