From 7f00423bb12a8ec7097ee28e067e9a5f7c012a75 Mon Sep 17 00:00:00 2001 From: gandhimathi Date: Wed, 28 Nov 2018 20:29:17 +0530 Subject: [PATCH] view more map updates --- .../allocation-view-more.component.html | 2 +- .../allocation-view-more.component.scss | 6 +++--- .../allocation-view-more/allocation-view-more.component.ts | 3 +++ 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.html index 0b3d03e52..921e13bbe 100644 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.html @@ -23,7 +23,7 @@
    -
  1. {{moreDat.pd_status | titlecase}} ( {{moreDat.applicant_name | titlecase}} )
  2. +
  3. {{moreDat.pd_status | titlecase}} ( {{moreDat.applicant_name | titlecase}} )
  4. {{moreDat.scheduled_on | titlecase}}
  5. {{moreDat.pd_type_name | titlecase}} ( Id : {{moreDat.pd_id}} )
  6. diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.scss b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.scss index f8d5b8deb..8777abac5 100644 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.scss +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.scss @@ -4,9 +4,9 @@ ol { list-style-type: none; } -ol li:first-child { - color: #62B013; -} +// ol li:first-child { +// color: #62B013; +// } @import "../../../../../assets/styles/scss/material.variables"; diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.ts index 8bff6fbb4..8f11effeb 100644 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/allocation-view-more/allocation-view-more.component.ts @@ -9,6 +9,9 @@ import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material'; export class AllocationViewMoreComponent implements OnInit { lat = -34.397; lng = 150.644; + allocated_color: string = '#ffa500'; + scheduled_color: string = '#3f51b5'; + inprogress_color: string = '#4caf50'; constructor(private dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: any) { }