You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2021/05/12 01:30:43 UTC

[superset] branch space-under-dataset-change-warning updated: fix: prop needs to be optional... proptional

This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch space-under-dataset-change-warning
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/space-under-dataset-change-warning by this push:
     new fe5f081  fix: prop needs to be optional... proptional
fe5f081 is described below

commit fe5f0815e61a639238bb44c7da41e34f96e46822
Author: Evan Rusackas <ev...@preset.io>
AuthorDate: Tue May 11 18:29:27 2021 -0700

    fix: prop needs to be optional... proptional
---
 superset-frontend/src/components/Alert/index.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/components/Alert/index.tsx b/superset-frontend/src/components/Alert/index.tsx
index ae2c67a..d9144e7 100644
--- a/superset-frontend/src/components/Alert/index.tsx
+++ b/superset-frontend/src/components/Alert/index.tsx
@@ -27,7 +27,7 @@ import Icons from 'src/components/Icons';
 
 export type AlertProps = PropsWithChildren<AntdAlertProps>;
 
-export default function Alert(props: AlertProps & { roomBelow: boolean }) {
+export default function Alert(props: AlertProps & { roomBelow?: boolean }) {
   const {
     type = 'info',
     description,