Skip to content
This repository was archived by the owner on Nov 9, 2024. It is now read-only.

Commit a2967e2

Browse files
committed
Adding not implemented notice to check buttons.
1 parent f0f566a commit a2967e2

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

web/frontend/angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,4 +161,4 @@
161161
}
162162
},
163163
"defaultProject": "lodestone"
164-
}
164+
}

web/frontend/src/app/app.module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import { TabsModule } from 'ngx-bootstrap/tabs';
2626
import { TypeaheadModule } from 'ngx-bootstrap/typeahead';
2727
import { Ng5SliderModule } from 'ng5-slider';
2828
import { CollapseModule } from 'ngx-bootstrap/collapse';
29+
import { TooltipModule } from 'ngx-bootstrap/tooltip';
2930

3031
@NgModule({
3132
declarations: [
@@ -57,6 +58,7 @@ import { CollapseModule } from 'ngx-bootstrap/collapse';
5758
TypeaheadModule.forRoot(),
5859
Ng5SliderModule,
5960
CollapseModule.forRoot(),
61+
TooltipModule.forRoot(),
6062
],
6163
providers: [],
6264
bootstrap: [AppComponent]

web/frontend/src/app/status/status.component.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ <h3 class="job-listing-title"><a href="#">ElasticSearch</a></h3>
5757

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)