Closed natrim closed 8 years ago
I'm submitting a bug report
Current behavior: template literals don't work with ternary operator
<template bindable="what"> <div> ${what ? `WHAT: ${what}!` : 'what?'} </div> </template>
Expected behavior: i expected it to work like
<template bindable="what"> <div> ${what ? 'WHAT: '+what+'!' : 'what?'} </div> </template>
Issue moved to aurelia/binding #500 via ZenHub
I'm submitting a bug report
Current behavior: template literals don't work with ternary operator
Expected behavior: i expected it to work like