File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
packages/web-components/src/components/notification Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -86,10 +86,11 @@ export const Default = {
86
86
?low-contrast ="${ lowContrast } "
87
87
status-icon-description ="${ ifDefined ( statusIconDescription ) } "
88
88
title-id ="${ ifDefined ( titleId ) } ">
89
- ${ actionButtonLabel &&
90
- html `< cds-actionable-notification-button slot ="action "
91
- > ${ actionButtonLabel } </ cds-actionable-notification-button
92
- > ` }
89
+ ${ actionButtonLabel
90
+ ? html `< cds-actionable-notification-button slot ="action " kind ="ghost "
91
+ > ${ actionButtonLabel } </ cds-actionable-notification-button
92
+ > `
93
+ : '' }
93
94
</ cds-callout-notification >
94
95
` ;
95
96
} ,
@@ -102,7 +103,7 @@ export const WithInteractiveElements = {
102
103
kind ="${ NOTIFICATION_KIND . INFO } "
103
104
title ="Notification title "
104
105
title-id ="callout-title-interactive "
105
- ?low-contrast ="true ">
106
+ ?low-contrast ="${ true } ">
106
107
< div class ="${ prefix } --actionable-notification__subtitle ">
107
108
Additional text can describe the notification, or a link to
108
109
< a href ="# " aria-describedby ="callout-title-interactive "
You can’t perform that action at this time.
0 commit comments