From 1ff13fb7867865ca2ebde56cba13717aeca8aef3 Mon Sep 17 00:00:00 2001 From: Rodrigo Antinarelli Date: Tue, 14 Apr 2020 11:36:54 -0300 Subject: [PATCH] fix notification bar --- platform/ui/src/components/Notification/Notification.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/ui/src/components/Notification/Notification.jsx b/platform/ui/src/components/Notification/Notification.jsx index d90a83c57..669c56c75 100644 --- a/platform/ui/src/components/Notification/Notification.jsx +++ b/platform/ui/src/components/Notification/Notification.jsx @@ -35,12 +35,12 @@ const Notification = ({ type, text, actionButtons }) => { const { icon, color } = getIconData(); return ( -
+
{text}
-
{actionButtons}
+
{actionButtons}
); };