fix(notifications): break lines for long message [EE-4521] (#8110)

pull/8199/head
Chaim Lev-Ari 2022-12-14 09:17:12 +02:00 committed by GitHub
parent 929749c0da
commit 52e150fa29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -8,4 +8,7 @@ export const details: Column<ToastNotification> = {
id: 'details',
disableFilters: true,
canHide: true,
Cell: ({ value }: { value: string }) => (
<div className="whitespace-normal">{value}</div>
),
};