File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1111 ...(props?.cardProps?.onAvatarClick && { cursor: 'pointer' }),
1212 }" @click =" handleAvatarClick" @keydown =" handleAvatarClick" v-if =" !cardProps?.hideAvatar" />
1313 <div class =" siren-sdk-card-content-wrapper" >
14- <div :style =" styles.cardTitle" class =" siren-sdk-card-text-break " >
14+ <div :style =" styles.cardTitle" class =" siren-sdk-card-title " >
1515 {{ props.notification?.message?.header }}
1616 </div >
17- <div :style =" styles.cardSubTitle" class =" siren-sdk-card-text-break " >
17+ <div :style =" styles.cardSubTitle" class =" siren-sdk-card-subtitle " >
1818 {{ props.notification?.message?.subHeader }}
1919 </div >
2020 <div :style =" styles.cardDescription" class =" siren-sdk-card-text-break siren-sdk-card-msg-body" >
2727 </div >
2828 </div >
2929 </div >
30- <div class =" siren-sdk-delete-button" @click =" handleDelete" @keydown =" handleDelete" >
30+ <div class =" siren-sdk-delete-button" @click =" handleDelete" @keydown =" handleDelete" v-if = " !cardProps?.hideDelete " >
3131 <CloseIcon :fill =" styles?.deleteIcon?.color" :size =" String(styles?.deleteIcon?.size)" />
3232 </div >
3333 </div >
Original file line number Diff line number Diff line change 5252 line-height : 16px ;
5353}
5454
55+ .siren-sdk-card-title {
56+ line-height : 20px ;
57+ margin-bottom : 4px ;
58+ }
59+ .siren-sdk-card-subtitle {
60+ line-height : 20px ;
61+ margin-bottom : 6px ;
62+ }
63+
64+
5565@keyframes fadeOut {
5666 0% {
5767 opacity : 1 ;
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ export const AUTHENTICATION_FAILED = 'AUTHENTICATION_FAILED';
9696export const TOKEN_VERIFICATION_PENDING = 'TOKEN_VERIFICATION_PENDING' ;
9797export const MAXIMUM_RETRY_COUNT = 3 ;
9898export const MAXIMUM_ITEMS_PER_FETCH = 50 ;
99- export const DEFAULT_NOTIFICATION_FETCH_COUNT = 10 ;
99+ export const DEFAULT_NOTIFICATION_FETCH_COUNT = 20 ;
100100
101101export const errorMap = {
102102 SIREN_OBJECT_NOT_FOUND : {
You can’t perform that action at this time.
0 commit comments