From 21aed1b61f9adfa3d20b6c238d8aa011b64f5e54 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 28 Oct 2018 21:31:49 +1100 Subject: [PATCH] Fixed NavLink styled buttons. --- public/objects/input/button/Button.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}`;