diff options
Diffstat (limited to 'openecomp-ui/src/nfvo-components/grid/GridSection.jsx')
-rw-r--r-- | openecomp-ui/src/nfvo-components/grid/GridSection.jsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openecomp-ui/src/nfvo-components/grid/GridSection.jsx b/openecomp-ui/src/nfvo-components/grid/GridSection.jsx index f2e3588d9e..46063b2b98 100644 --- a/openecomp-ui/src/nfvo-components/grid/GridSection.jsx +++ b/openecomp-ui/src/nfvo-components/grid/GridSection.jsx @@ -22,7 +22,8 @@ const GridSection = ({ children, className = '', titleClassName, - hasLastColSet = false + hasLastColSet = false, + required = false }) => { return ( <div @@ -32,6 +33,7 @@ const GridSection = ({ {title && ( <div className={`section-title ${titleClassName || ''}`}> {title} + {required && <span className={'required'}>*</span>} </div> )} <div className="grid-items">{children}</div> |