I have the following files.
index.js
...
completedTooltip = 'Completed on 2019-02-02T23:59:59-07:00';
...
index.html
...
{{completedTooltip | date : 'MM/dd/yyyy'}}
...
The date doesn't get formatted here and just spits out the string.
Is there any way I can make this work OR do I have to just have 2 separate vars so that one var can hold the text and the other can hold the date?