0
<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

robin me
  • 3
  • 2

1 Answers1

0

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

eg:

value="{{product.productName}}"
Tyler2P
  • 2,324
  • 26
  • 22
  • 31