- replace moment with dayjs

- add leaflet.css inside main-styles.css
- add map.componetn for leaflet map
- bind properties to map via map-view.component
This commit is contained in:
Arno Kaimbacher 2022-01-26 16:32:19 +01:00
parent 1f930dbb1f
commit 5fe134a650
14 changed files with 218 additions and 80 deletions

View file

@ -1,4 +1,5 @@
import moment from "moment";
// import moment from "moment";
import dayjs from "dayjs";
export interface Dataset {
abstract_additional: Array<string>;
@ -160,8 +161,8 @@ export class DbDataset {
if (this.embargo_date === null) {
return true;
}
const embargoDate = moment(this.embargo_date);
const todayDate = moment.now();
const embargoDate = dayjs(this.embargo_date); // moment(this.embargo_date);
const todayDate = dayjs(); //moment.now();
// Embargo has passed on the day after the specified date
if (embargoDate.isBefore(todayDate)) {