Hello!
I would like to hide from the 'My activities' page the tickets whose last update was before 2021.
I have already managed to filter certain requests by status, using
{{#isnt status 'closed'}}
on the requests_page.hbs,

but I can't manage to filter them out by last update, I have tried using
{{#if (compare updated_at ">" 02/06/2022)}}
but it doesn't seem to work.
Is it possible to do what I am looking for, how would I have to write the code?
Thanks