I try to use ReactiveClock to display live time, so when I add seconds timer then time set to 00:00:00
var currentTime = getHours();
$parameters.Hours = currentTime.hours;
$parameters.Minutes = currentTime.minutes;
$parameters.Seconds = currentTime.Seconds;
How can I display the seconds
Hi @Pratya Homhual ,
it should be $parameters.Seconds = currentTime.seconds; not $parameters.Seconds = currentTime.Seconds; .
I have update this oml you can check it.
Hope this will help you.
Appreciate
Thank you @Pratya Homhual