diff --git a/client/stillbox/src/app/incidents/incident/incident.component.html b/client/stillbox/src/app/incidents/incident/incident.component.html new file mode 100644 index 0000000..5afe3dc --- /dev/null +++ b/client/stillbox/src/app/incidents/incident/incident.component.html @@ -0,0 +1 @@ +

incident works!

diff --git a/client/stillbox/src/app/incidents/incident/incident.component.scss b/client/stillbox/src/app/incidents/incident/incident.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/client/stillbox/src/app/incidents/incident/incident.component.spec.ts b/client/stillbox/src/app/incidents/incident/incident.component.spec.ts new file mode 100644 index 0000000..d5de18b --- /dev/null +++ b/client/stillbox/src/app/incidents/incident/incident.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { IncidentComponent } from './incident.component'; + +describe('IncidentComponent', () => { + let component: IncidentComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [IncidentComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(IncidentComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/client/stillbox/src/app/incidents/incident/incident.component.ts b/client/stillbox/src/app/incidents/incident/incident.component.ts new file mode 100644 index 0000000..9d142ea --- /dev/null +++ b/client/stillbox/src/app/incidents/incident/incident.component.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-incident', + imports: [], + templateUrl: './incident.component.html', + styleUrl: './incident.component.scss' +}) +export class IncidentComponent { + +} diff --git a/client/stillbox/src/app/incidents/incidents.component.html b/client/stillbox/src/app/incidents/incidents.component.html index 95a118a..a222d15 100644 --- a/client/stillbox/src/app/incidents/incidents.component.html +++ b/client/stillbox/src/app/incidents/incidents.component.html @@ -89,7 +89,7 @@ Calls - + {{ incident.callCount }} diff --git a/client/stillbox/src/app/incidents/incidents.component.scss b/client/stillbox/src/app/incidents/incidents.component.scss index ee20832..031b8d5 100644 --- a/client/stillbox/src/app/incidents/incidents.component.scss +++ b/client/stillbox/src/app/incidents/incidents.component.scss @@ -7,10 +7,14 @@ table, width: 100%; } -.duration { +.callCount { text-align: right; } +.mat-column-numCalls { + width: 50px; +} + .tabContainer { max-height: calc( ( @@ -28,10 +32,6 @@ table, align-content: center; } -.playButton { - cursor: pointer; -} - tr.mat-mdc-row { height: 2.3rem !important; font-size: 12pt; @@ -41,34 +41,7 @@ tr.mat-mdc-row { display: block !important; } -.mat-column-select, -.mat-column-time, -.mat-column-play, -.mat-column-download, -.mat-column-duration { - width: 10px; - padding: 0 2px; -} - -.mat-column-date { - width: 10px; - padding: 0 6px; -} - -.mat-column-system { - width: 4%; -} - -.mat-column-talkgroup { - width: 40%; -} - @media screen and (max-width: 768px) { - .mat-column-group, - .mat-column-system { - display: none; - } - .tabFootContainer { padding: 0; } @@ -87,12 +60,4 @@ form { .filterBox { flex: 1 1 300px; -} - -.durationFilter { - flex: 0 0 80px; -} - -.tagSelect { - flex: 1 1 250px; -} +} \ No newline at end of file