Skip to content

Commit bcbc268

Browse files
committed
adjust background coloring, only query for not all cells
1 parent 8b257bc commit bcbc268

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

map-frontend/frontend-content/src/app/app.component.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.navigator-container {
66
width: 100%;
77
padding: 0;
8-
background-color: #f6f5fd;
8+
/* background-color: #f6f5fd; */
99
}
1010

1111
.row {

map-frontend/frontend-content/src/app/cell-list/cell-list.component.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ export class CellListComponent implements OnInit, OnDestroy, DoCheck {
6464
this.probeInsertions.push(probeCount + 1);
6565
probeCount++;
6666
}
67-
this.cellListService.retrieveCellList(this.sessionInfo);
67+
let cellsQuery = this.session;
68+
cellsQuery['is_all'] = 0;
69+
// this.cellListService.retrieveCellList(this.sessionInfo);
70+
this.cellListService.retrieveCellList(cellsQuery);
6871
this.cellListSubscription = this.cellListService.getCellListLoadedListener()
6972
.subscribe((cellListData) => {
7073
this.unitBehaviorLoading = false;

map-frontend/frontend-content/src/app/session-list/session-list.component.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ form {
1616
display: inline-block;
1717
font-size: 80%;
1818
width: 100%;
19+
background-color: #f6f5fd;
1920
}
2021

2122
.filterExpand {

0 commit comments

Comments
 (0)