Fixed refresh all. Fixed Updating Methods. Removed Jira Widget.

This commit is contained in:
Patrick Fic
2020-11-06 08:10:34 -08:00
parent 8b775ee494
commit 83f7188822
8 changed files with 68 additions and 50 deletions

View File

@@ -36,6 +36,9 @@ export function ReportingDatesMolecule({ queryReportingData }) {
<DatePicker.RangePicker
ranges={{
Today: [moment(), moment()],
"Last 7 days": [moment().subtract(7, "days"), moment()],
"Next 7 days": [moment(), moment().add(7, "days")],
"Next 14 days": [moment(), moment().add(14, "days")],
"Last Month": [
moment().startOf("month").subtract(1, "month"),
moment().startOf("month").subtract(1, "month").endOf("month"),
@@ -48,7 +51,6 @@ export function ReportingDatesMolecule({ queryReportingData }) {
moment().startOf("month").add(1, "month"),
moment().startOf("month").add(1, "month").endOf("month"),
],
"Last 7 days": [moment().subtract(7, "days"), moment()],
}}
/>
</Form.Item>