Search code examples
javascripthtmlnode.jsexpresshbs

value attribute in hbs not showing string after space


<input type="text" class="form-control" id="exampleInputEmail2"
                                     name="productName" value={{product.productName}} >

Inside my product.productName = Smart Phones, but it only shows 'Smart' inside the input field

How to show may whole string in my input field in HBS


Solution

  • Please provide quotes for the value. I think this will help you to figure out the error:

    eg:

    value="{{product.productName}}"