@@ -108,7 +108,7 @@ function (_Component) {
108108 key : "render" ,
109109 value : function render ( ) {
110110 return React . createElement ( "button" , {
111- className : "btn " . concat ( this . props . primary ? 'primary-btn' : 'secondary-btn' ) ,
111+ className : "text-uppercase text-bold btn " . concat ( this . props . primary ? 'primary-btn' : 'secondary-btn' ) ,
112112 onClick : this . props . clickAction ,
113113 disabled : this . props . disabled
114114 } , this . props . children ) ;
@@ -176,7 +176,7 @@ function (_Component) {
176176 this . setState ( {
177177 checked : e . target . id
178178 } ) ;
179- this . props . action ( e . target . value ) ;
179+ this . props . action ( e . target ) ;
180180 }
181181 } , {
182182 key : "openMore" ,
@@ -210,7 +210,7 @@ function (_Component) {
210210 return React . createElement ( "form" , {
211211 action : "" ,
212212 className : "flex justify-content-center align-items-center flex-column"
213- } , options . length <= 3 && options , options . length > 3 && options . slice ( 0 , 3 ) , ! this . state . showHidden && React . createElement ( "label" , {
213+ } , options . length <= 4 && options , options . length > 4 && options . slice ( 0 , 3 ) , ! this . state . showHidden && options . length > 4 && React . createElement ( "label" , {
214214 htmlFor : "more" ,
215215 className : "single-option " . concat ( this . state . checked === 'more' ? 'checked-option' : '' )
216216 } , React . createElement ( "input" , {
0 commit comments