File tree 5 files changed +9
-7
lines changed
gallery/GalleryItemButton
5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -130,8 +130,8 @@ ChartJS.register(
130
130
const props = defineProps <{
131
131
priceChartData? : [Date , number ][][]
132
132
chartHeight? : string
133
- hideOutliers: boolean
134
- applySmoothing: boolean
133
+ hideOutliers? : boolean
134
+ applySmoothing? : boolean
135
135
}>()
136
136
const emit = defineEmits ([' update:hideOutliers' , ' update:applySmoothing' ])
137
137
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ import QRCode from '@/components/shared/QRCode.vue'
61
61
62
62
const props = withDefaults (
63
63
defineProps <{
64
- noShadow: boolean
65
- mobileModal: boolean
64
+ noShadow? : boolean
65
+ mobileModal? : boolean
66
66
link? : string
67
67
sharingContent? : string
68
68
}>(),
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div class =" buttons content-start gallery-button" >
3
3
<div data-testid =" gallery-item-share-button" >
4
- <ShareDropdown :sharing-content =" customSharingContent" />
4
+ <ShareDropdown
5
+ :sharing-content =" customSharingContent"
6
+ />
5
7
</div >
6
8
7
9
<GalleryItemMoreActionBtn
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import IdentityPopoverFooter from './IdentityPopoverFooter.vue'
29
29
30
30
const props = withDefaults (
31
31
defineProps <{
32
- showPopover: boolean
32
+ showPopover? : boolean
33
33
}>(),
34
34
{
35
35
showPopover: true ,
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ import placeholder from '~/assets/svg/preloader.svg?url'
51
51
const emit = defineEmits ([' update:modelValue' ])
52
52
const props = withDefaults (
53
53
defineProps <{
54
- status: TransactionStatus
54
+ status? : TransactionStatus
55
55
modelValue? : boolean
56
56
canCancel? : boolean
57
57
}>(),
You can’t perform that action at this time.
0 commit comments