Skip to content

Commit

Permalink
Adding not implemented notice to check buttons.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Feb 6, 2020
1 parent f0f566a commit a2967e2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion web/frontend/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@
}
},
"defaultProject": "lodestone"
}
}
2 changes: 2 additions & 0 deletions web/frontend/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import { TabsModule } from 'ngx-bootstrap/tabs';
import { TypeaheadModule } from 'ngx-bootstrap/typeahead';
import { Ng5SliderModule } from 'ng5-slider';
import { CollapseModule } from 'ngx-bootstrap/collapse';
import { TooltipModule } from 'ngx-bootstrap/tooltip';

@NgModule({
declarations: [
Expand Down Expand Up @@ -57,6 +58,7 @@ import { CollapseModule } from 'ngx-bootstrap/collapse';
TypeaheadModule.forRoot(),
Ng5SliderModule,
CollapseModule.forRoot(),
TooltipModule.forRoot(),
],
providers: [],
bootstrap: [AppComponent]
Expand Down
10 changes: 5 additions & 5 deletions web/frontend/src/app/status/status.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ <h3 class="job-listing-title"><a href="#">ElasticSearch</a></h3>

<!-- Buttons -->
<div class="buttons-to-right always-visible">
<a href="dashboard-manage-bidders.html" class="button ripple-effect"><i class="icon-material-outline-supervisor-account"></i> Check</a>
<a (click)="scanMissing()" class="button ripple-effect"><i class="icon-material-outline-supervisor-account"></i> Scan</a>
<a tooltip="Not Implemented" href="#" class="button dark ripple-effect"><i class="icon-material-outline-supervisor-account"></i> Check</a>
<a (click)="scanMissing()" href="#" class="button ripple-effect"><i class="icon-material-outline-supervisor-account"></i> Scan</a>

</div>
</li>
Expand Down Expand Up @@ -86,7 +86,7 @@ <h3 class="job-listing-title"><a href="#">Processor: Documents</a></h3>

<!-- Buttons -->
<div class="buttons-to-right always-visible">
<a href="dashboard-manage-bidders.html" class="button ripple-effect"><i class="icon-material-outline-supervisor-account"></i> Check</a>
<a tooltip="Not Implemented" href="#" class="button dark ripple-effect"><i class="icon-material-outline-supervisor-account"></i> Check</a>
</div>
</li>

Expand All @@ -113,7 +113,7 @@ <h3 class="job-listing-title"><a href="#">Processor: Thumbnails</a></h3>

<!-- Buttons -->
<div class="buttons-to-right always-visible">
<a href="dashboard-manage-bidders.html" class="button ripple-effect"><i class="icon-material-outline-supervisor-account"></i> Check</a>
<a tooltip="Not Implemented" href="#" class="button dark ripple-effect"><i class="icon-material-outline-supervisor-account"></i> Check</a>
</div>
</li>

Expand All @@ -139,7 +139,7 @@ <h3 class="job-listing-title"><a href="#">Errors</a></h3>

<!-- Buttons -->
<div class="buttons-to-right always-visible">
<a href="dashboard-manage-bidders.html" class="button ripple-effect"><i class="icon-material-outline-supervisor-account"></i> Check</a>
<a tooltip="Not Implemented" href="#" class="button dark ripple-effect"><i class="icon-material-outline-supervisor-account"></i> Check</a>
</div>
</li>

Expand Down

0 comments on commit a2967e2

Please sign in to comment.