File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed
QueryBuilder/ConfirmationDialog
lab/src/Wizard/WizardTitle Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,11 @@ export const Main: StoryObj<HvDrawerProps> = {
70
70
open = { open }
71
71
{ ...args }
72
72
>
73
- < HvDialogTitle component = "div" className = { classes . drawerTitle } >
73
+ < HvDialogTitle
74
+ component = "div"
75
+ className = { classes . drawerTitle }
76
+ showIcon = { false }
77
+ >
74
78
Lorem Ipsum
75
79
</ HvDialogTitle >
76
80
< HvDialogContent className = { classes . drawerContent } >
Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ export const WithPreviewThumbnails: StoryObj<HvFileUploaderProps> = {
306
306
} }
307
307
/>
308
308
< HvDialog open = { open } onClose = { ( ) => setOpen ( false ) } >
309
- < HvDialogTitle > { previewTitle } </ HvDialogTitle >
309
+ < HvDialogTitle showIcon = { false } > { previewTitle } </ HvDialogTitle >
310
310
< HvDialogContent >
311
311
< img
312
312
alt = "Preview of the uploaded file"
Original file line number Diff line number Diff line change @@ -45,7 +45,9 @@ export const ConfirmationDialog = ({
45
45
firstFocusable = "confirmation-dialog-cancel"
46
46
buttonTitle = { closeButtonTooltip }
47
47
>
48
- < HvDialogTitle variant = "warning" > { title } </ HvDialogTitle >
48
+ < HvDialogTitle variant = "warning" showIcon = { false } >
49
+ { title }
50
+ </ HvDialogTitle >
49
51
< HvDialogContent indentContent > { message } </ HvDialogContent >
50
52
< HvDialogActions >
51
53
< HvButton variant = "primaryGhost" onClick = { onConfirm } >
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ export const HvWizardTitle = ({
94
94
classes . messageContainer ,
95
95
classes . titleContainer ,
96
96
) }
97
+ showIcon = { false }
97
98
>
98
99
{ title && (
99
100
< HvTypography variant = "title3" component = "div" >
You can’t perform that action at this time.
0 commit comments