Skip to content

Commit f183d73

Browse files
committed
job paragraph information tooltip top to top-left
1 parent db76838 commit f183d73

File tree

1 file changed

+7
-0
lines changed
  • zeppelin-web/src/app/jobmanager/jobs

1 file changed

+7
-0
lines changed

zeppelin-web/src/app/jobmanager/jobs/job.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,48 +50,55 @@
5050
style="text-decoration: none !important;"
5151
ng-href="#/notebook/{{notebookJob.notebookId}}/paragraph/{{paragraphJob.id}}">
5252
<i style="color: green" class="fa fa-circle-o"
53+
tooltip-placement="top-left"
5354
tooltip="{{paragraphJob.name}} is READY">
5455
</i>
5556
</a>
5657
<a ng-switch-when="FINISHED"
5758
style="text-decoration: none !important;"
5859
ng-href="#/notebook/{{notebookJob.notebookId}}/paragraph/{{paragraphJob.id}}">
5960
<i style="color: green" class="fa fa-circle"
61+
tooltip-placement="top-left"
6062
tooltip="{{paragraphJob.name}} is FINISHED">
6163
</i>
6264
</a>
6365
<a ng-switch-when="ABORT"
6466
style="text-decoration: none !important;"
6567
ng-href="#/notebook/{{notebookJob.notebookId}}/paragraph/{{paragraphJob.id}}">
6668
<i style="color: orange" class="fa fa-circle"
69+
tooltip-placement="top-left"
6770
tooltip="{{paragraphJob.name}} is ABORT">
6871
</i>
6972
</a>
7073
<a ng-switch-when="ERROR"
7174
style="text-decoration: none !important;"
7275
ng-href="#/notebook/{{notebookJob.notebookId}}/paragraph/{{paragraphJob.id}}">
7376
<i style="color: red" class="fa fa-circle"
77+
tooltip-placement="top-left"
7478
tooltip="{{paragraphJob.name}} is ERROR">
7579
</i>
7680
</a>
7781
<a ng-switch-when="PENDING"
7882
style="text-decoration: none !important;"
7983
ng-href="#/notebook/{{notebookJob.notebookId}}/paragraph/{{paragraphJob.id}}">
8084
<i style="color: gray" class="fa fa-circle"
85+
tooltip-placement="top-left"
8186
tooltip="{{paragraphJob.name}} is PENDING">
8287
</i>
8388
</a>
8489
<a ng-switch-when="RUNNING"
8590
style="text-decoration: none !important;"
8691
ng-href="#/notebook/{{notebookJob.notebookId}}/paragraph/{{paragraphJob.id}}">
8792
<i style="color: blue" class="fa fa-spinner spinAnimation"
93+
tooltip-placement="top-left"
8894
tooltip="{{paragraphJob.name}} is RUNNING">
8995
</i>
9096
</a>
9197
<a ng-switch-default class="icon-question"
9298
style="text-decoration: none !important;"
9399
ng-href="#/notebook/{{notebookJob.notebookId}}/paragraph/{{paragraphJob.id}}">
94100
<i class="icon-question"
101+
tooltip-placement="top-left"
95102
tooltip="{{paragraphJob.name}} is {{paragraphJob.status}}">
96103
</i>
97104
</a>

0 commit comments

Comments
 (0)