diff --git a/scm-ui-components/packages/ui-components/src/modals/ConfirmAlert.js b/scm-ui-components/packages/ui-components/src/modals/ConfirmAlert.js index 1f93024865..37cd849047 100644 --- a/scm-ui-components/packages/ui-components/src/modals/ConfirmAlert.js +++ b/scm-ui-components/packages/ui-components/src/modals/ConfirmAlert.js @@ -32,11 +32,15 @@ class ConfirmAlert extends React.Component { const { title, message, buttons } = this.props; return ( -
-
- { -
- {title &&

{title}

} +
+
+ +
+

+ {title} +

+
+
{message}
{buttons.map((button, i) => ( @@ -49,8 +53,8 @@ class ConfirmAlert extends React.Component { ))}
-
- } + +
);