diff --git a/src/app/components/analysis-window/analysis-window.component.html b/src/app/components/analysis-window/analysis-window.component.html index fc5eda49134b8337a88b58b7707a06fe189bad07..21eb1a405d252a5f5e882b526efae3cd69ef74b2 100644 --- a/src/app/components/analysis-window/analysis-window.component.html +++ b/src/app/components/analysis-window/analysis-window.component.html @@ -103,11 +103,11 @@ <app-toggle *ngIf="task.info.target === 'drug-target'" class="footer-buttons" textOn="Drugs On" textOff="Off" tooltipOn="Display drugs in the network" tooltipOff="Hide drugs in the network" - [value]="showDrugs" (valueChange)="toggleDrugs($event)" icon="fa-capsules"></app-toggle> + [value]="showDrugs" (valueChange)="toggleDrugs($event)"></app-toggle> <app-toggle class="footer-buttons" textOn="Animation On" textOff="Off" tooltipOn="Enable the network animation." tooltipOff="Disable the network animation and freeze nodes." - [value]="physicsEnabled" (valueChange)="updatePhysicsEnabled($event)" icon="fa-wind"></app-toggle> + [value]="physicsEnabled" (valueChange)="updatePhysicsEnabled($event)"></app-toggle> </footer> </div> <div class="content tab-content scrollable" *ngIf="task && task.info.done" [class.is-visible]="tab === 'table'"> diff --git a/src/app/components/info-box/info-box.component.html b/src/app/components/info-box/info-box.component.html index 57e89bc8b7f8871462288d31e3d6a2489798169f..10455f2c8b0aadfa1a0641f89ed0527906928940 100644 --- a/src/app/components/info-box/info-box.component.html +++ b/src/app/components/info-box/info-box.component.html @@ -45,8 +45,7 @@ <div class="field has-addons add-remove-toggle" *ngIf="wrapper.type !== 'drug'"> <app-toggle [value]="analysis.inSelection(wrapper)" (valueChange)="$event ? analysis.addItems([wrapper]) : analysis.removeItems([wrapper])" textOn="Selected" - textOff="Deselected" tooltipOn="Add protein to selection." tooltipOff="Remove protein from selection." - icon="fa-plus"></app-toggle> + textOff="Deselected" tooltipOn="Add protein to selection." tooltipOff="Remove protein from selection."></app-toggle> </div> </div> <div *ngIf="!wrapper"> diff --git a/src/app/components/launch-analysis/launch-analysis.component.html b/src/app/components/launch-analysis/launch-analysis.component.html index 1806915eb713d0f2afece9bf10b707ef82db0ed6..b6217901b51c7d487d837e797dbf4951f5cab852 100644 --- a/src/app/components/launch-analysis/launch-analysis.component.html +++ b/src/app/components/launch-analysis/launch-analysis.component.html @@ -46,13 +46,13 @@ <div class="field" *ngIf="target === 'drug'"> <label class="label">Indirect Drugs</label> <app-toggle textOn="Include" textOff="Ignore" tooltipOn="Include indirect drugs." - tooltipOff="Exclude indirect drugs from the result." icon="fa-check" + tooltipOff="Exclude indirect drugs from the result." [(value)]="trustrankIncludeIndirectDrugs"></app-toggle> </div> <div class="field" *ngIf="target === 'drug'"> <label class="label">Non-approved Drugs</label> <app-toggle textOn="Include" textOff="Ignore" tooltipOn="Include non-approved drugs." - tooltipOff="Exclude non-approved drugs from the result." icon="fa-check" + tooltipOff="Exclude non-approved drugs from the result." [(value)]="trustrankIncludeNonApprovedDrugs"></app-toggle> </div> <div class="field"> @@ -77,13 +77,13 @@ <div class="field" *ngIf="target === 'drug'"> <label class="label">Indirect Drugs</label> <app-toggle textOn="Include" textOff="Ignore" tooltipOn="Include indirect drugs." - tooltipOff="Exclude indirect drugs from the result." icon="fa-check" + tooltipOff="Exclude indirect drugs from the result." [(value)]="closenessIncludeIndirectDrugs"></app-toggle> </div> <div class="field" *ngIf="target === 'drug'"> <label class="label">Non-approved Drugs</label> <app-toggle textOn="Include" textOff="Ignore" tooltipOn="Include non-approved drugs." - tooltipOff="Exclude non-approved drugs from the result." icon="fa-check" + tooltipOff="Exclude non-approved drugs from the result." [(value)]="closenessIncludeNonApprovedDrugs"></app-toggle> </div> <div class="field"> @@ -99,7 +99,7 @@ <div class="field" *ngIf="target === 'drug'"> <label class="label">Non-approved Drugs</label> <app-toggle textOn="Include" textOff="Ignore" tooltipOn="Include non-approved drugs." - tooltipOff="Exclude non-approved drugs from the result." icon="fa-check" + tooltipOff="Exclude non-approved drugs from the result." [(value)]="degreeIncludeNonApprovedDrugs"></app-toggle> </div> <div class="field"> diff --git a/src/app/pages/explorer-page/explorer-page.component.html b/src/app/pages/explorer-page/explorer-page.component.html index 38139f4416d2a8f9b8327783876d62f6e0fdaadf..e2ec147ab2b8cafa65c6920f147ac1547e018f0c 100644 --- a/src/app/pages/explorer-page/explorer-page.component.html +++ b/src/app/pages/explorer-page/explorer-page.component.html @@ -167,8 +167,7 @@ </button> <app-toggle class="footer-buttons" textOn="Animation On" textOff="Off" tooltipOn="Enable the network animation." tooltipOff="Disable the network animation and freeze nodes." - [value]="physicsEnabled" (valueChange)="updatePhysicsEnabled($event)" - icon="fa-wind"></app-toggle> + [value]="physicsEnabled" (valueChange)="updatePhysicsEnabled($event)"></app-toggle> </footer> </div> </div>