In this code I'm trying to change transform property on an element. When I click on element one for the first time everything works -- element translates. When I click it again nothing changes. What am I missing?
<div id="one" (click)="two.style.transform = (two.style.transform == 'translate(-100vh)') ? 'translate(0vh)' : 'translate(-100vh)'"></div>
<div id="two" #two></div>