Filter on Timestamp issue

When creating a filter on a timestamp field I do not want the user to enter a time:
afbeelding

It must be something like Create ts >= 01/09/2021 and create ts <= 08/09/2021

Or the filter must be something like timestamp = date
create ts = 08/09/2021
Currently this is the same as create ts = 08/09/2021 00:00:00-000

How to solve this?

Hello!

Take a look at the Date Interval operation. There you can configure the interval without entering the date and time values.
Another way is changing property type from TIMESTAMP to DATE:

@CreatedDate
@Column(name = "CREATED_DATE")
@Temporal(TemporalType.DATE)
private Date createdDate;

and generate liquibase scripts to update DB. In this case, DateField will be created without the time part for the createdDate property.