1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-09 11:10:05 +00:00

Resolve "Date field date of month filter"

This commit is contained in:
Zuhair Rayyes 2021-12-19 20:06:09 +00:00 committed by Bram Wiepjes
parent 65da2d08cf
commit 25d4f9f714
8 changed files with 169 additions and 3 deletions
web-frontend/modules/database

View file

@ -44,6 +44,7 @@ import {
DateEqualsCurrentYearViewFilterType,
DateBeforeViewFilterType,
DateAfterViewFilterType,
DateEqualsDayOfMonthViewFilterType,
LinkRowHasFilterType,
LinkRowHasNotFilterType,
MultipleSelectHasFilterType,
@ -177,6 +178,10 @@ export default (context) => {
'viewFilter',
new DateEqualsCurrentYearViewFilterType(context)
)
app.$registry.register(
'viewFilter',
new DateEqualsDayOfMonthViewFilterType(context)
)
app.$registry.register('viewFilter', new DateBeforeViewFilterType(context))
app.$registry.register('viewFilter', new DateAfterViewFilterType(context))
app.$registry.register('viewFilter', new ContainsViewFilterType(context))