mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-09 03:00:04 +00:00
Implementing the missing 'in this week' date filter.
This commit is contained in:
parent
1ca4649669
commit
deeda763bf
9 changed files with 186 additions and 3 deletions
web-frontend/modules/database
|
@ -44,6 +44,7 @@ import {
|
|||
DateEqualsDaysAgoViewFilterType,
|
||||
DateEqualsMonthsAgoViewFilterType,
|
||||
DateEqualsYearsAgoViewFilterType,
|
||||
DateEqualsCurrentWeekViewFilterType,
|
||||
DateEqualsCurrentMonthViewFilterType,
|
||||
DateEqualsCurrentYearViewFilterType,
|
||||
DateBeforeViewFilterType,
|
||||
|
@ -241,6 +242,10 @@ export default (context) => {
|
|||
'viewFilter',
|
||||
new DateEqualsYearsAgoViewFilterType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewFilter',
|
||||
new DateEqualsCurrentWeekViewFilterType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewFilter',
|
||||
new DateEqualsCurrentMonthViewFilterType(context)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue