diff --git a/public/objects/input/button/Button.jsx b/public/objects/input/button/Button.jsx index ef11845..6d89941 100644 --- a/public/objects/input/button/Button.jsx +++ b/public/objects/input/button/Button.jsx @@ -38,7 +38,7 @@ export default props => { "warning", "manager" ].forEach(e => delete newProps[e]); - type = type || "button"; + type = type; children = children || value; if(primary) style = "primary"; @@ -67,8 +67,8 @@ export default props => { } else { //Everything Else (button without a type); + type = "button"; clazzes += " is-not-button"; - } if(style) clazzes += ` o-btn--style-${style}`;