Skip to content

Commit

Permalink
Merge conflict marker cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: seajamied <[email protected]>
  • Loading branch information
seajamied committed May 18, 2020
1 parent 406cb9e commit 99d2255
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 66 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<div class="content-container">
<<<<<<< HEAD
<div class="header">
<div class="heading">
<h2 class="heading-title">Check-in History</h2>
Expand All @@ -11,24 +10,6 @@ <h6 class="heading-time">Updated {{ lastUpdatedMessage }}</h6>
Last {{ selectableDaysAgo }} Days
</option>
</select>
=======
<div class="container">
<main>
<div class="page-title">Last Check-in by Day</div>
<div class="update-time">Updated {{ lastUpdatedMessage }}</div>
<div>
<select (change)="dateChanged($event.target.value)">
<option *ngFor="let selectableDaysAgo of selectableDaysAgoCollection"
[value]="selectableDaysAgo" [selected]="selectableDaysAgo == selectedDaysAgo">
Last {{ selectableDaysAgo }} Days
</option>
</select>
</div>

<app-simple-line-graph [data]="days"></app-simple-line-graph>

</main>
>>>>>>> Making progress, data is showing but being overwritten, x axis are up, everything is unstyled
</div>

<app-simple-line-graph [data]="days"></app-simple-line-graph>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<div class="content-container">
<<<<<<< HEAD
<div
class="dashboard-grid"
[ngClass]="{
Expand Down Expand Up @@ -88,45 +87,5 @@ <h1>
</app-desktop-detail>
</div>
</div>
=======
<div class="container">
<main>
<app-insight
[visible] = "insightVisible"
[desktops] = "desktops$ | async"
[totalDesktops] = "totalDesktopCount$ | async"
[pageSize] = "pageSize$ | async"
[currentPage] = "currentPage$ | async"
[termFilters] = "termFilters$ | async"
(pageChange)="onPageChange($event)"
(termFilterSelected)="onTermFilterSelected($event)"
(closed)="insightClose()"
(sortChange)="onSortChange($event)">
</app-insight>
<app-top-errors
[topErrorsItems] = "topErrorsItems$ | async"
[lastUpdated] = "topErrorsUpdated$ | async"
(errorSelected)="onErrorSelected($event)">
</app-top-errors>
<app-daily-check-in
[unknownPercentage] = "unknownPercentage$ | async"
[checkedInPercentage] = "checkedInPercentage$ | async"
[totalCount] = "totalCount$ | async"
[unknownCount] = "unknownCount$ | async"
[lastUpdated] = "checkInCountCollectedUpdated$ | async"
[checkedInCount] = "checkedInCount$ | async">
</app-daily-check-in>
<app-check-in-time-series
[days] = "days$ | async"
[selectedDaysAgo] = "selectedDaysAgo$ | async"
[lastUpdated] = "checkInCountCollectedUpdated$ | async"
(daysAgoChanged)="handleDaysAgoChange($event)">
</app-check-in-time-series>
<app-unknown-desktop-duration-counts
[countedDurationItems] = "unknownDesktopCountedDurationItems$ | async"
[lastUpdated] = "unknownDesktopCountedDurationUpdated$ | async">
</app-unknown-desktop-duration-counts>
</main>
>>>>>>> Revert temp file change
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,7 @@ import { DesktopRoutingModule } from './desktop-routing.module';
CheckInTimeSeriesComponent,
DailyCheckInComponent,
DashboardComponent,
<<<<<<< HEAD
DesktopDetailComponent,
CheckInTimeSeriesComponent,
TopErrorsComponent,
UnknownDesktopDurationCountsComponent,
=======
>>>>>>> Alphabetize imports
InsightComponent,
SimpleLineGraphComponent,
TopErrorsComponent,
Expand Down

0 comments on commit 99d2255

Please sign in to comment.