فهرست منبع

Break notification item name if it doesn't fit

If the notification item's name is too long, break it on the next line,
so it doesn't overflow the items list.
Sergiu Miclea 6 سال پیش
والد
کامیت
c7ce6eb784
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/components/molecules/NotificationDropdown/NotificationDropdown.jsx

+ 1 - 1
src/components/molecules/NotificationDropdown/NotificationDropdown.jsx

@@ -148,7 +148,7 @@ export const ItemReplicaBadge = styled.div`
   border: 1px solid #7F8795;
 `
 export const ItemTitle = styled.div`
-  ${props => props.nowrap ? 'white-space: nowrap;' : ''}
+  ${props => props.nowrap ? 'white-space: nowrap;' : 'word-break: break-word;'}
   overflow: hidden;
   text-overflow: ellipsis;
 `