customer - upgrade angular 8 to 9 - fix minor issues

This commit is contained in:
Roland Schneider 2021-09-07 12:26:20 +02:00
parent 508dbb14fc
commit c9b4466ed5
4 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,3 @@
export * from './error.interceptor'; export * from './error.interceptor';
export * from './fake-backend'; export * from './fake-backend';
export * from './jwt.interceptor'; export * from './jwt.interceptor';
export {DayToDisplay} from "../services/event.service";

View File

@ -23,7 +23,7 @@ export class FitEventTypesComponent implements OnInit, ControlValueAccessor {
private onChange: Function; private onChange: Function;
private onTouched: Function; private onTouched: Function;
private value: string; public value: string;
constructor(private eventService: EventService) { constructor(private eventService: EventService) {

View File

@ -1,6 +1,6 @@
import {Component, EventEmitter, HostBinding, Input, OnInit, Output} from '@angular/core'; import {Component, EventEmitter, HostBinding, Input, OnInit, Output} from '@angular/core';
import {dateToMoment, Day, MonthCalendarEvent} from "../month-calendar/month-calendar.component"; import {dateToMoment, Day, MonthCalendarEvent} from "../month-calendar/month-calendar.component";
import {DayToDisplay} from "../../_helpers"; import {DayToDisplay} from "../../services/event.service";
@Component({ @Component({
selector: '[app-month-calendar-day]', selector: '[app-month-calendar-day]',

View File

@ -2,7 +2,6 @@ import {Injectable} from '@angular/core';
import {HttpClient} from "@angular/common/http"; import {HttpClient} from "@angular/common/http";
import {Endpoints} from "./endpoints"; import {Endpoints} from "./endpoints";
import {Observable} from "rxjs"; import {Observable} from "rxjs";
import {DayToDisplay} from "../_helpers";
@Injectable({ @Injectable({
providedIn: 'root' providedIn: 'root'