I would like to dynamically set <input type='text' placeholder=' {{ 'somestring' | getText }}'>
placeholders using pipes. (this method does not work)
The pipe itself works perfectly fine e.g.
<p>{{ myVariable | getText}}</p>
will correctly render, as well as <p>{{ 'someString' | getText}}</p>
How does one use this to dynamically set placeholder strings?