generated from moja-global/Import-Me
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: render failling due to incorrect pug #54
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hey, @amantiwari1 thanks for your work. However, it'd be better to comment under an issue before creating a PR. |
@Chicken-Biryani — Apologies, I had asked @amantiwari1 on Slack to try fixing the issue. It has been a long-standing blocker hence I requested him to have a look. |
Hi @amantiwari1 I tested the changes. However the local development has failed with the following logs: Error Logs[NG_SERVE] Error: src/modules/reporting-frameworks/containers/reporting-frameworks-records-tabulation-page/reporting-frameworks-records-tabulation-page.component.html:3:77 - error NG8002: Can't bind to 'pagesize' since it isn't a known property of 'sb-reporting-frameworks-records-tabulation'.
[NG_SERVE] 1. If 'sb-reporting-frameworks-records-tabulation' is an Angular component and it has 'pagesize' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-reporting-frameworks-records-tabulation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 3 ><div class="card-body"><sb-reporting-frameworks-records-tabulation [pagesize]="6"></sb-reporting-frameworks-records-tabulation></div></sb-card
[NG_SERVE] 91m ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-frameworks/containers/reporting-frameworks-records-tabulation-page/reporting-frameworks-records-tabulation-page.component.ts:9:18
[NG_SERVE] 9 templateUrl: './reporting-frameworks-records-tabulation-page.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingFrameworksRecordsTabulationPageComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-tables/components/reporting-tables-records-creation/reporting-tables-records-creation.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="reportingTablesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-tables/components/reporting-tables-records-creation/reporting-tables-records-creation.component.ts:24:16
[NG_SERVE] 24 templateUrl: './reporting-tables-records-creation.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingTablesRecordsCreationComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-tables/components/reporting-tables-records-updation/reporting-tables-records-updation.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="reportingTablesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-tables/components/reporting-tables-records-updation/reporting-tables-records-updation.component.ts:23:16
[NG_SERVE] 23 templateUrl: './reporting-tables-records-updation.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingTablesRecordsUpdationComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-tables/containers/reporting-tables-records-creation-modal/reporting-tables-records-creation-modal.component.html:4:48 - error NG8002: Can't bind to 'targetreportingframework' since it isn't a known property of 'sb-reporting-tables-records-creation'.
[NG_SERVE] 1. If 'sb-reporting-tables-records-creation' is an Angular component and it has 'targetreportingframework' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-reporting-tables-records-creation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 4 ><sb-reporting-tables-records-creation [targetreportingframework]="targetReportingFramework" (initialized)="onInitialized()" (succeeded)="onSucceeded()" (failed)="onFailed($event)"></sb-reporting-tables-records-creation><ng-container *ngif='(status$ | async) === "initializing"'><sb-message-overlay activity="creating" status="initializing"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "saving"'><sb-message-overlay activity="creating" status="saving"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "succeeded"'><sb-message-overlay activity="creating" status="succeeded"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "failed"'><sb-message-overlay activity="creating" status="failed"></sb-message-overlay></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-tables/containers/reporting-tables-records-creation-modal/reporting-tables-records-creation-modal.component.ts:22:18
[NG_SERVE] 22 templateUrl: './reporting-tables-records-creation-modal.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingTablesRecordsCreationModalComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-tables/containers/reporting-tables-records-deletion-modal/reporting-tables-records-deletion-modal.component.html:4:48 - error NG8002: Can't bind to 'targetreportingframework' since it isn't a known property of 'sb-reporting-tables-records-deletion'.
[NG_SERVE] 1. If 'sb-reporting-tables-records-deletion' is an Angular component and it has 'targetreportingframework' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-reporting-tables-records-deletion' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 4 ><sb-reporting-tables-records-deletion [targetreportingframework]="targetReportingFramework" [id]="id" (succeeded)="onSucceeded()" (failed)="onFailed($event)"></sb-reporting-tables-records-deletion><ng-container *ngif='(status$ | async) === "deleting"'><sb-message-overlay activity="deleting" status="deleting"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "succeeded"'><sb-message-overlay activity="deleting" status="succeeded"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "failed"'><sb-message-overlay activity="deleting" status="failed"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "retrying"'><sb-countdown-overlay crosshead="Retrying in " (completed)="onDelete()"></sb-countdown-overlay></ng-container></ng-container
[NG_SERVE] [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-tables/containers/reporting-tables-records-deletion-modal/reporting-tables-records-deletion-modal.component.ts:20:18
[NG_SERVE] 20 templateUrl: './reporting-tables-records-deletion-modal.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingTablesRecordsDeletionModalComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-tables/containers/reporting-tables-records-tabulation-page/reporting-tables-records-tabulation-page.component.html:2:120 - error NG8002: Can't bind to 'hidebreadcrumbs' since it isn't a known property of 'sb-header'.
[NG_SERVE] 1. If 'sb-header' is an Angular component and it has 'hidebreadcrumbs' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-header' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 2 ><ng-container header=""><sb-header title="Reporting Tables" subtitle="The Reporting Framework's Reporting Tables" [hidebreadcrumbs]="false"></sb-header></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-tables/containers/reporting-tables-records-tabulation-page/reporting-tables-records-tabulation-page.component.ts:9:18
[NG_SERVE] 9 templateUrl: './reporting-tables-records-tabulation-page.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingTablesRecordsTabulationPageComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-tables/containers/reporting-tables-records-tabulation-page/reporting-tables-records-tabulation-page.component.html:6:76 - error NG8002: Can't bind to 'pagesize' since it isn't a known property of 'sb-reporting-tables-records-tabulation'.
[NG_SERVE] 1. If 'sb-reporting-tables-records-tabulation' is an Angular component and it has 'pagesize' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-reporting-tables-records-tabulation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 6 <div class="card-body"><sb-reporting-tables-records-tabulation [pagesize]="6"></sb-reporting-tables-records-tabulation></div></sb-card></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-tables/containers/reporting-tables-records-tabulation-page/reporting-tables-records-tabulation-page.component.ts:9:18
[NG_SERVE] 9 templateUrl: './reporting-tables-records-tabulation-page.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingTablesRecordsTabulationPageComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-variables/components/reporting-variables-records-creation/reporting-variables-records-creation.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="reportingVariablesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-variables/components/reporting-variables-records-creation/reporting-variables-records-creation.component.ts:24:16
[NG_SERVE] 24 templateUrl: './reporting-variables-records-creation.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingVariablesRecordsCreationComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-variables/components/reporting-variables-records-updation/reporting-variables-records-updation.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="reportingVariablesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-variables/components/reporting-variables-records-updation/reporting-variables-records-updation.component.ts:23:16
[NG_SERVE] 23 templateUrl: './reporting-variables-records-updation.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingVariablesRecordsUpdationComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-variables/containers/reporting-variables-records-creation-modal/reporting-variables-records-creation-modal.component.html:4:51 - error NG8002: Can't bind to 'targetreportingframework' since it isn't a known property of 'sb-reporting-variables-records-creation'.
[NG_SERVE] 1. If 'sb-reporting-variables-records-creation' is an Angular component and it has 'targetreportingframework' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-reporting-variables-records-creation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 4 ><sb-reporting-variables-records-creation [targetreportingframework]="targetReportingFramework" (initialized)="onInitialized()" (succeeded)="onSucceeded()" (failed)="onFailed($event)"></sb-reporting-variables-records-creation><ng-container *ngif='(status$ | async) === "initializing"'><sb-message-overlay activity="creating" status="initializing"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "saving"'><sb-message-overlay activity="creating" status="saving"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "succeeded"'><sb-message-overlay activity="creating" status="succeeded"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "failed"'><sb-message-overlay activity="creating" status="failed"></sb-message-overlay></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-variables/containers/reporting-variables-records-creation-modal/reporting-variables-records-creation-modal.component.ts:22:18
[NG_SERVE] 22 templateUrl: './reporting-variables-records-creation-modal.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingVariablesRecordsCreationModalComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-variables/containers/reporting-variables-records-deletion-modal/reporting-variables-records-deletion-modal.component.html:4:51 - error NG8002: Can't bind to 'targetreportingframework' since it isn't a known property of 'sb-reporting-variables-records-deletion'.
[NG_SERVE] 1. If 'sb-reporting-variables-records-deletion' is an Angular component and it has 'targetreportingframework' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-reporting-variables-records-deletion' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 4 ><sb-reporting-variables-records-deletion [targetreportingframework]="targetReportingFramework" [id]="id" (succeeded)="onSucceeded()" (failed)="onFailed($event)"></sb-reporting-variables-records-deletion><ng-container *ngif='(status$ | async) === "deleting"'><sb-message-overlay activity="deleting" status="deleting"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "succeeded"'><sb-message-overlay activity="deleting" status="succeeded"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "failed"'><sb-message-overlay activity="deleting" status="failed"></sb-message-overlay></ng-container><ng-container *ngif='(status$ | async) === "retrying"'><sb-countdown-overlay crosshead="Retrying in " (completed)="onDelete()"></sb-countdown-overlay></ng-container></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-variables/containers/reporting-variables-records-deletion-modal/reporting-variables-records-deletion-modal.component.ts:20:18
[NG_SERVE] 20 templateUrl: './reporting-variables-records-deletion-modal.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingVariablesRecordsDeletionModalComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-variables/containers/reporting-variables-records-tabulation-page/reporting-variables-records-tabulation-page.component.html:2:126 - error NG8002: Can't bind to 'hidebreadcrumbs' since it isn't a known property of 'sb-header'.
[NG_SERVE] 1. If 'sb-header' is an Angular component and it has 'hidebreadcrumbs' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-header' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 2 ><ng-container header=""><sb-header title="Reporting Variables" subtitle="The Reporting Framework's Reporting Variables" [hidebreadcrumbs]="false"></sb-header></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-variables/containers/reporting-variables-records-tabulation-page/reporting-variables-records-tabulation-page.component.ts:9:18
[NG_SERVE] 9 templateUrl: './reporting-variables-records-tabulation-page.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingVariablesRecordsTabulationPageComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/reporting-variables/containers/reporting-variables-records-tabulation-page/reporting-variables-records-tabulation-page.component.html:6:79 - error NG8002: Can't bind to 'pagesize' since it isn't a known property of 'sb-reporting-variables-records-tabulation'.
[NG_SERVE] 1. If 'sb-reporting-variables-records-tabulation' is an Angular component and it has 'pagesize' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-reporting-variables-records-tabulation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 6 <div class="card-body"><sb-reporting-variables-records-tabulation [pagesize]="6"></sb-reporting-variables-records-tabulation></div></sb-card></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/reporting-variables/containers/reporting-variables-records-tabulation-page/reporting-variables-records-tabulation-page.component.ts:9:18
[NG_SERVE] 9 templateUrl: './reporting-variables-records-tabulation-page.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ReportingVariablesRecordsTabulationPageComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/results/components/activity-gauge-component/activity-gauge.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/results/components/activity-gauge-component/activity-gauge.component.ts:42:16
[NG_SERVE] 42 templateUrl: './activity-gauge.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ActivityGaugeComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/results/components/activity-gauge-component/activity-gauge.component.html:1:20 - error TS2339: Property 'partyTypesForm' does not exist on type 'ActivityGaugeComponent'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/results/components/activity-gauge-component/activity-gauge.component.ts:42:16
[NG_SERVE] 42 templateUrl: './activity-gauge.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ActivityGaugeComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/results/components/activity-result-component/activity-result.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/results/components/activity-result-component/activity-result.component.ts:20:16
[NG_SERVE] 20 templateUrl: './activity-result.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ActivityResultComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/results/components/activity-result-component/activity-result.component.html:1:20 - error TS2339: Property 'partyTypesForm' does not exist on type 'ActivityResultComponent'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/results/components/activity-result-component/activity-result.component.ts:20:16
[NG_SERVE] 20 templateUrl: './activity-result.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ActivityResultComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/results/containers/activities-results-container/activities-results-container.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/results/containers/activities-results-container/activities-results-container.ts:21:16
[NG_SERVE] 21 templateUrl: './activities-results-container.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ActivitiesResultsContainerComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/results/containers/activities-results-container/activities-results-container.html:1:20 - error TS2339: Property 'partyTypesForm' does not exist on type 'ActivitiesResultsContainerComponent'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/results/containers/activities-results-container/activities-results-container.ts:21:16
[NG_SERVE] 21 templateUrl: './activities-results-container.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ActivitiesResultsContainerComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/results/containers/results-dashboard/results-dashboard.component.html:6:36 - error NG8001: 'sb-results-records-tabulation' is not a known element:
[NG_SERVE] 1. If 'sb-results-records-tabulation' is an Angular component, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-results-records-tabulation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE]
[NG_SERVE] 6 <div class="card-body"><sb-results-records-tabulation [pagesize]="6"></sb-results-records-tabulation></div></sb-card></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/results/containers/results-dashboard/results-dashboard.component.ts:12:18
[NG_SERVE] 12 templateUrl: './results-dashboard.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ResultsDashboardComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/results/containers/results-dashboard/results-dashboard.component.html:6:67 - error NG8002: Can't bind to 'pagesize' since it isn't a known property of 'sb-results-records-tabulation'.
[NG_SERVE] 1. If 'sb-results-records-tabulation' is an Angular component and it has 'pagesize' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-results-records-tabulation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 6 <div class="card-body"><sb-results-records-tabulation [pagesize]="6"></sb-results-records-tabulation></div></sb-card></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/results/containers/results-dashboard/results-dashboard.component.ts:12:18
[NG_SERVE] 12 templateUrl: './results-dashboard.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ResultsDashboardComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/situations/containers/situations-dashboard/situations-dashboard.component.html:6:36 - error NG8001: 'sb-situations-records-tabulation' is not a known element:
[NG_SERVE] 1. If 'sb-situations-records-tabulation' is an Angular component, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-situations-records-tabulation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE]
[NG_SERVE] 6 <div class="card-body"><sb-situations-records-tabulation [pagesize]="6"></sb-situations-records-tabulation></div></sb-card></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/situations/containers/situations-dashboard/situations-dashboard.component.ts:11:18
[NG_SERVE] 11 templateUrl: './situations-dashboard.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component SituationsDashboardComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/situations/containers/situations-dashboard/situations-dashboard.component.html:6:70 - error NG8002: Can't bind to 'pagesize' since it isn't a known property of 'sb-situations-records-tabulation'.
[NG_SERVE] 1. If 'sb-situations-records-tabulation' is an Angular component and it has 'pagesize' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-situations-records-tabulation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 6 <div class="card-body"><sb-situations-records-tabulation [pagesize]="6"></sb-situations-records-tabulation></div></sb-card></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/situations/containers/situations-dashboard/situations-dashboard.component.ts:11:18
[NG_SERVE] 11 templateUrl: './situations-dashboard.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component SituationsDashboardComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/unit-categories/components/unit-categories-records-creation/unit-categories-records-creation.component.html:1:19 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form role="form" [formgroup]="unitCategoriesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/unit-categories/components/unit-categories-records-creation/unit-categories-records-creation.component.ts:20:16
[NG_SERVE] 20 templateUrl: './unit-categories-records-creation.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component UnitCategoriesRecordsCreationComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/unit-categories/components/unit-categories-records-updation/unit-categories-records-updation.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="unitCategoriesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/unit-categories/components/unit-categories-records-updation/unit-categories-records-updation.component.ts:22:16
[NG_SERVE] 22 templateUrl: './unit-categories-records-updation.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component UnitCategoriesRecordsUpdationComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/unit-categories/containers/unit-categories-records-home-page/unit-categories-records-home-page.component.html:6:75 - error NG8002: Can't bind to 'pagesize' since it isn't a known property of 'sb-unit-categories-records-tabulation'.
[NG_SERVE] 1. If 'sb-unit-categories-records-tabulation' is an Angular component and it has 'pagesize' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-unit-categories-records-tabulation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 6 <div class="card-body"><sb-unit-categories-records-tabulation [pagesize]="6"></sb-unit-categories-records-tabulation></div></sb-card></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/unit-categories/containers/unit-categories-records-home-page/unit-categories-records-home-page.component.ts:12:18
[NG_SERVE] 12 templateUrl: './unit-categories-records-home-page.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component UnitCategoriesRecordsHomePageComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/unit-categories/containers/unit-categories-records-tabulation-page/unit-categories-records-tabulation-page.component.html:6:75 - error NG8002: Can't bind to 'pagesize' since it isn't a known property of 'sb-unit-categories-records-tabulation'.
[NG_SERVE] 1. If 'sb-unit-categories-records-tabulation' is an Angular component and it has 'pagesize' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-unit-categories-records-tabulation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 6 <div class="card-body"><sb-unit-categories-records-tabulation [pagesize]="6"></sb-unit-categories-records-tabulation></div></sb-card></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/unit-categories/containers/unit-categories-records-tabulation-page/unit-categories-records-tabulation-page.component.ts:10:18
[NG_SERVE] 10 templateUrl: './unit-categories-records-tabulation-page.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component UnitCategoriesRecordsTabulationPageComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/units/components/units-records-creation/units-records-creation.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="unitsForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/units/components/units-records-creation/units-records-creation.component.ts:24:16
[NG_SERVE] 24 templateUrl: './units-records-creation.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component UnitsRecordsCreationComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/units/components/units-records-updation/units-records-updation.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="unitsForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/units/components/units-records-updation/units-records-updation.component.ts:23:16
[NG_SERVE] 23 templateUrl: './units-records-updation.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component UnitsRecordsUpdationComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/units/containers/units-records-tabulation-page/units-records-tabulation-page.component.html:6:65 - error NG8002: Can't bind to 'pagesize' since it isn't a known property of 'sb-units-records-tabulation'.
[NG_SERVE] 1. If 'sb-units-records-tabulation' is an Angular component and it has 'pagesize' input, then verify that it is part of this module.
[NG_SERVE] 2. If 'sb-units-records-tabulation' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
[NG_SERVE] 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
[NG_SERVE]
[NG_SERVE] 6 <div class="card-body"><sb-units-records-tabulation [pagesize]="6"></sb-units-records-tabulation></div></sb-card></ng-container
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/units/containers/units-records-tabulation-page/units-records-tabulation-page.component.ts:10:18
[NG_SERVE] 10 templateUrl: './units-records-tabulation-page.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component UnitsRecordsTabulationPageComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:4:66 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 4 ><div *ngif="config.dataLabelledLineChart" id="line{{config.id}}Container" style="height: 400px"></div>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:5:63 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 5 <div *ngif="config.percentageAreaChart" id="area{{config.id}}Container" style="height: 400px"></div>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:6:62 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 6 <div *ngif="config.basicColumnChart" id="column{{config.id}}Container" style="height: 400px"></div>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:7:81 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 7 <div *ngif="config.stackedPercentageColumnChart" id="stackedColumn{{config.id}}Container" style="height: 400px"></div></ng-container
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:10:131 - error TS2339: Property 'select' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 10 <li class="nav-item" *ngif="config.dataLabelledLineChart"><a class="nav-link" href="javascript: void(0)" (click)="select('dataLabelledLineChart')" [class.active]="selectedChart === 'dataLabelledLineChart'" [class.open]="selectedChart === 'dataLabelledLineChart'" data-toggle="tab">Line</a></li>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:10:180 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 10 <li class="nav-item" *ngif="config.dataLabelledLineChart"><a class="nav-link" href="javascript: void(0)" (click)="select('dataLabelledLineChart')" [class.active]="selectedChart === 'dataLabelledLineChart'" [class.open]="selectedChart === 'dataLabelledLineChart'" data-toggle="tab">Line</a></li>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:10:237 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 10 <li class="nav-item" *ngif="config.dataLabelledLineChart"><a class="nav-link" href="javascript: void(0)" (click)="select('dataLabelledLineChart')" [class.active]="selectedChart === 'dataLabelledLineChart'" [class.open]="selectedChart === 'dataLabelledLineChart'" data-toggle="tab">Line</a></li>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:11:129 - error TS2339: Property 'select' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 11 <li class="nav-item" *ngif="config.percentageAreaChart"><a class="nav-link" href="javascript: void(0)" (click)="select('percentageAreaChart')" [class.active]="selectedChart === 'percentageAreaChart'" [class.open]="selectedChart === 'percentageAreaChart'" data-toggle="tab">Area</a></li>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:11:176 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 11 <li class="nav-item" *ngif="config.percentageAreaChart"><a class="nav-link" href="javascript: void(0)" (click)="select('percentageAreaChart')" [class.active]="selectedChart === 'percentageAreaChart'" [class.open]="selectedChart === 'percentageAreaChart'" data-toggle="tab">Area</a></li>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:11:231 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 11 <li class="nav-item" *ngif="config.percentageAreaChart"><a class="nav-link" href="javascript: void(0)" (click)="select('percentageAreaChart')" [class.active]="selectedChart === 'percentageAreaChart'" [class.open]="selectedChart === 'percentageAreaChart'" data-toggle="tab">Area</a></li>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] [0mError: src/modules/visualization/components/chart/chart.component.html:12:126 - error TS2339: Property 'select' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 12 <li class="nav-item" *ngif="config.basicColumnChart"><a class="nav-link" href="javascript: void(0)" (click)="select('basicColumnChart')" [class.active]="selectedChart === 'basicColumnChart'" [class.open]="selectedChart === 'basicColumnChart'" data-toggle="tab">Column</a></li>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:12:170 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 12 <li class="nav-item" *ngif="config.basicColumnChart"><a class="nav-link" href="javascript: void(0)" (click)="select('basicColumnChart')" [class.active]="selectedChart === 'basicColumnChart'" [class.open]="selectedChart === 'basicColumnChart'" data-toggle="tab">Column</a></li>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:12:222 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 12 <li class="nav-item" *ngif="config.basicColumnChart"><a class="nav-link" href="javascript: void(0)" (click)="select('basicColumnChart')" [class.active]="selectedChart === 'basicColumnChart'" [class.open]="selectedChart === 'basicColumnChart'" data-toggle="tab">Column</a></li>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:13:138 - error TS2339: Property 'select' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 13 <li class="nav-item" *ngif="config.stackedPercentageColumnChart"><a class="nav-link" href="javascript: void(0)" (click)="select('stackedPercentageColumnChart')" [class.active]="selectedChart === 'stackedPercentageColumnChart'" [class.open]="selectedChart === 'stackedPercentageColumnChart'" data-toggle="tab">Stacked Column</a></li>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:13:194 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 13 <li class="nav-item" *ngif="config.stackedPercentageColumnChart"><a class="nav-link" href="javascript: void(0)" (click)="select('stackedPercentageColumnChart')" [class.active]="selectedChart === 'stackedPercentageColumnChart'" [class.open]="selectedChart === 'stackedPercentageColumnChart'" data-toggle="tab">Stacked Column</a></li>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:13:258 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 13 <li class="nav-item" *ngif="config.stackedPercentageColumnChart"><a class="nav-link" href="javascript: void(0)" (click)="select('stackedPercentageColumnChart')" [class.active]="selectedChart === 'stackedPercentageColumnChart'" [class.open]="selectedChart === 'stackedPercentageColumnChart'" data-toggle="tab">Stacked Column</a></li>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:16:95 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 16 <div class="tab-pane fade" *ngif="config.dataLabelledLineChart" [class.show]="selectedChart === 'dataLabelledLineChart'" [class.active]="selectedChart === 'dataLabelledLineChart'" id="line{{config.id}}"><div id="line{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:16:154 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 16 <div class="tab-pane fade" *ngif="config.dataLabelledLineChart" [class.show]="selectedChart === 'dataLabelledLineChart'" [class.active]="selectedChart === 'dataLabelledLineChart'" id="line{{config.id}}"><div id="line{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:16:207 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 16 <div class="tab-pane fade" *ngif="config.dataLabelledLineChart" [class.show]="selectedChart === 'dataLabelledLineChart'" [class.active]="selectedChart === 'dataLabelledLineChart'" id="line{{config.id}}"><div id="line{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:16:235 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 16 <div class="tab-pane fade" *ngif="config.dataLabelledLineChart" [class.show]="selectedChart === 'dataLabelledLineChart'" [class.active]="selectedChart === 'dataLabelledLineChart'" id="line{{config.id}}"><div id="line{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:17:93 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 17 <div class="tab-pane fade" *ngif="config.percentageAreaChart" [class.show]="selectedChart === 'percentageAreaChart'" [class.active]="selectedChart === 'percentageAreaChart'" id="area{{config.id}}"><div id="area{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:17:150 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 17 <div class="tab-pane fade" *ngif="config.percentageAreaChart" [class.show]="selectedChart === 'percentageAreaChart'" [class.active]="selectedChart === 'percentageAreaChart'" id="area{{config.id}}"><div id="area{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:17:201 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 17 <div class="tab-pane fade" *ngif="config.percentageAreaChart" [class.show]="selectedChart === 'percentageAreaChart'" [class.active]="selectedChart === 'percentageAreaChart'" id="area{{config.id}}"><div id="area{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:17:229 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 17 <div class="tab-pane fade" *ngif="config.percentageAreaChart" [class.show]="selectedChart === 'percentageAreaChart'" [class.active]="selectedChart === 'percentageAreaChart'" id="area{{config.id}}"><div id="area{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:18:90 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 18 <div class="tab-pane fade" *ngif="config.basicColumnChart" [class.show]="selectedChart === 'basicColumnChart'" [class.active]="selectedChart === 'basicColumnChart'" id="column{{config.id}}"><div id="column{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:18:144 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 18 <div class="tab-pane fade" *ngif="config.basicColumnChart" [class.show]="selectedChart === 'basicColumnChart'" [class.active]="selectedChart === 'basicColumnChart'" id="column{{config.id}}"><div id="column{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:18:194 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 18 <div class="tab-pane fade" *ngif="config.basicColumnChart" [class.show]="selectedChart === 'basicColumnChart'" [class.active]="selectedChart === 'basicColumnChart'" id="column{{config.id}}"><div id="column{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:18:224 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 18 <div class="tab-pane fade" *ngif="config.basicColumnChart" [class.show]="selectedChart === 'basicColumnChart'" [class.active]="selectedChart === 'basicColumnChart'" id="column{{config.id}}"><div id="column{{config.id}}Container" style="height: 400px"></div></div>
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:19:102 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 19 <div class="tab-pane fade" *ngif="config.stackedPercentageColumnChart" [class.show]="selectedChart === 'stackedPercentageColumnChart'" [class.active]="selectedChart === 'stackedPercentageColumnChart'" id="stackedColumn{{config.id}}"><div id="stackedColumn{{config.id}}Container" style="height: 400px"></div></div></div
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:19:168 - error TS2339: Property 'selectedChart' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 19 <div class="tab-pane fade" *ngif="config.stackedPercentageColumnChart" [class.show]="selectedChart === 'stackedPercentageColumnChart'" [class.active]="selectedChart === 'stackedPercentageColumnChart'" id="stackedColumn{{config.id}}"><div id="stackedColumn{{config.id}}Container" style="height: 400px"></div></div></div
[NG_SERVE] ~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:19:237 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 19 <div class="tab-pane fade" *ngif="config.stackedPercentageColumnChart" [class.show]="selectedChart === 'stackedPercentageColumnChart'" [class.active]="selectedChart === 'stackedPercentageColumnChart'" id="stackedColumn{{config.id}}"><div id="stackedColumn{{config.id}}Container" style="height: 400px"></div></div></div
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/chart/chart.component.html:19:274 - error TS2339: Property 'config' does not exist on type 'ChartComponent'.
[NG_SERVE]
[NG_SERVE] 19 <div class="tab-pane fade" *ngif="config.stackedPercentageColumnChart" [class.show]="selectedChart === 'stackedPercentageColumnChart'" [class.active]="selectedChart === 'stackedPercentageColumnChart'" id="stackedColumn{{config.id}}"><div id="stackedColumn{{config.id}}Container" style="height: 400px"></div></div></div
[NG_SERVE] ~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/chart/chart.component.ts:41:18
[NG_SERVE] 41 templateUrl: './chart.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ChartComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/count/count.component.html:1:160 - error TS2531: Object is possibly 'null'.
[NG_SERVE]
[NG_SERVE] 1 <div class="card bg-white text-dark border-top-0 border-bottom-0 border-right-0 border-left-lg shadow" [style]="'border-color:' + primaryVisualizationVariable.color + ';'">
[NG_SERVE] ~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/count/count.component.ts:27:16
[NG_SERVE] 27 templateUrl: './count.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component CountComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/count/count.component.html:4:149 - error NG8002: Can't bind to 'countup' since it isn't a known property of 'span'.
[NG_SERVE]
[NG_SERVE] 4 <span class="text-uppercase text-center">{{primaryVisualizationVariable?.label}}</span><span class="font-weight-bold text-center"><span [countup]="primaryVisualizationVariableQuantityObservation?.amount" [options]="{decimalPlaces: primaryVisualizationVariableQuantityObservation?.decimalPlaces}">0</span><span *ngif="variableCount == 1">{{primaryVisualizationVariableQuantityObservationUnit?.symbol}}</span></span
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/count/count.component.ts:27:16
[NG_SERVE] 27 templateUrl: './count.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component CountComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/count/count.component.html:4:217 - error NG8002: Can't bind to 'options' since it isn't a known property of 'span'.
[NG_SERVE]
[NG_SERVE] 4 <span class="text-uppercase text-center">{{primaryVisualizationVariable?.label}}</span><span class="font-weight-bold text-center"><span [countup]="primaryVisualizationVariableQuantityObservation?.amount" [options]="{decimalPlaces: primaryVisualizationVariableQuantityObservation?.decimalPlaces}">0</span><span *ngif="variableCount == 1">{{primaryVisualizationVariableQuantityObservationUnit?.symbol}}</span></span
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/count/count.component.ts:27:16
[NG_SERVE] 27 templateUrl: './count.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component CountComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/count/count.component.html:7:78 - error NG8002: Can't bind to 'countup' since it isn't a known property of 'span'.
[NG_SERVE]
[NG_SERVE] 7 ><small>{{secondaryVisualizationVariable?.label}} :<span [countup]="secondaryVisualizationVariableQuantityObservation?.amount" [options]="{decimalPlaces: secondaryVisualizationVariableQuantityObservation?.decimalPlaces}">0</span></small></span
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/count/count.component.ts:27:16
[NG_SERVE] 27 templateUrl: './count.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component CountComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/components/count/count.component.html:7:148 - error NG8002: Can't bind to 'options' since it isn't a known property of 'span'.
[NG_SERVE]
[NG_SERVE] 7 ><small>{{secondaryVisualizationVariable?.label}} :<span [countup]="secondaryVisualizationVariableQuantityObservation?.amount" [options]="{decimalPlaces: secondaryVisualizationVariableQuantityObservation?.decimalPlaces}">0</span></small></span
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/components/count/count.component.ts:27:16
[NG_SERVE] 27 templateUrl: './count.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component CountComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/containers/actors-counts/actors-counts.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/containers/actors-counts/actors-counts.component.ts:22:16
[NG_SERVE] 22 templateUrl: './actors-counts.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ActorCountsComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/containers/actors-counts/actors-counts.component.html:1:20 - error TS2339: Property 'partyTypesForm' does not exist on type 'ActorCountsComponent'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/containers/actors-counts/actors-counts.component.ts:22:16
[NG_SERVE] 22 templateUrl: './actors-counts.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ActorCountsComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/containers/issue-counts/issue-counts.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/containers/issue-counts/issue-counts.component.ts:22:16
[NG_SERVE] 22 templateUrl: './issue-counts.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component IssuesCountsComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/containers/issue-counts/issue-counts.component.html:1:20 - error TS2339: Property 'partyTypesForm' does not exist on type 'IssuesCountsComponent'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/containers/issue-counts/issue-counts.component.ts:22:16
[NG_SERVE] 22 templateUrl: './issue-counts.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component IssuesCountsComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/containers/issue-graphs/issue-graphs.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/containers/issue-graphs/issue-graphs.component.ts:22:16
[NG_SERVE] 22 templateUrl: './issue-graphs.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component IssueGraphsComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/containers/issue-graphs/issue-graphs.component.html:1:20 - error TS2339: Property 'partyTypesForm' does not exist on type 'IssueGraphsComponent'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/containers/issue-graphs/issue-graphs.component.ts:22:16
[NG_SERVE] 22 templateUrl: './issue-graphs.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component IssueGraphsComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/containers/participating-organizations/participating-organizations.component.html:m1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/containers/participating-organizations/participating-organizations.component.ts:24:16
[NG_SERVE] 24 templateUrl: './participating-organizations.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ParticipatingOrganizationsComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/containers/participating-organizations/participating-organizations.component.html:1:20 - error TS2339: Property 'partyTypesForm' does not exist on type 'ParticipatingOrganizationsComponent'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/containers/participating-organizations/participating-organizations.component.ts:24:16
[NG_SERVE] 24 templateUrl: './participating-organizations.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ParticipatingOrganizationsComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/containers/participation-graphs/participation-graphs.component.html:1:7 - error NG8002: Can't bind to 'formgroup' since it isn't a known property of 'form'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/containers/participation-graphs/participation-graphs.component.ts:22:16
[NG_SERVE] 22 templateUrl: './participation-graphs.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ParticipationGraphsComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] Error: src/modules/visualization/containers/participation-graphs/participation-graphs.component.html:1:20 - error TS2339: Property 'partyTypesForm' does not exist on type 'ParticipationGraphsComponent'.
[NG_SERVE]
[NG_SERVE] 1 <form [formgroup]="partyTypesForm">
[NG_SERVE] ~~~~~~~~~~~~~~
[NG_SERVE]
[NG_SERVE] src/modules/visualization/containers/participation-graphs/participation-graphs.component.ts:22:16
[NG_SERVE] 22 templateUrl: './participation-graphs.component.html',
[NG_SERVE] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[NG_SERVE] Error occurs in the template of component ParticipationGraphsComponent.
[NG_SERVE]
[NG_SERVE]
[NG_SERVE]
[NG_SERVE]
[NG_SERVE] ✖ Failed to compile. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request Template
Description
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
Fixes # (issue)
Type of change
Please delete options that are not relevant.
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
Additional Context (Please include any Screenshots/gifs if relevant)
...
Checklist: