1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

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

This commit is contained in:
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

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>
),
};