Browse Source

feat(nocodb): add sub ops for isWithin

pull/5185/head
Wing-Kam Wong 2 years ago
parent
commit
feec16510e
  1. 11
      packages/nocodb/src/lib/models/Filter.ts

11
packages/nocodb/src/lib/models/Filter.ts

@ -64,7 +64,16 @@ export default class Filter {
| 'oneMonthFromNow'
| 'daysAgo'
| 'daysFromNow'
| 'exactDate';
| 'exactDate'
// sub ops for isWithin
| 'pastWeek'
| 'pastMonth'
| 'pastYear'
| 'nextWeek'
| 'nextMonth'
| 'nextYear'
| 'pastNumberOfDays'
| 'nextNumberOfDays';
value?: string;

Loading…
Cancel
Save