customer - upgrade angular 8 to 9 - fix minor issues
This commit is contained in:
parent
508dbb14fc
commit
c9b4466ed5
@ -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";
|
|
||||||
|
|||||||
@ -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) {
|
||||||
|
|||||||
@ -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]',
|
||||||
|
|||||||
@ -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'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user