-
Notifications
You must be signed in to change notification settings - Fork 29.2k
[SPARK-20942][WEB-UI]The title style about field is error in the history server web ui. #18170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 36 commits
d383efb
3059013
555cef8
46bb1ad
0efb0dd
0e37fde
52641bb
d3977c9
137b90e
0fe5865
cf6f42a
685cd6b
c716a92
679cec3
3c9387a
cb71f44
ce92a74
dd64342
bffd2bd
588d42a
4bbeee1
362e5ad
4ed5e00
d871e01
a1f7759
dc56cdf
c999cf7
685dd8c
b744ceb
84a50f2
402b5f7
4867780
c1b1e38
85752db
172c872
26b0145
5fc7c59
446a584
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,17 +20,17 @@ | |
| <thead> | ||
| <tr> | ||
| <th> | ||
| <span data-toggle="tooltip" data-placement="right" title="ID of the application."> | ||
| <span data-toggle="tooltip" data-placement="right" title="ID of this application."> | ||
| App ID | ||
| </span> | ||
| </th> | ||
| <th> | ||
| <span data-toggle="tooltip" data-placement="above" title="Name of the application."> | ||
| <span data-toggle="tooltip" data-placement="right" title="Name of this application."> | ||
| App Name | ||
| </span> | ||
| </th> | ||
| <th class="attemptIDSpan"> | ||
| <span data-toggle="tooltip" data-placement="above" title="The attempt ID of this application since one application might be launched several times"> | ||
| <span data-toggle="tooltip" data-placement="right" title="The attempt ID of this application since one application might be launched several times"> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why we need to change the tooltip placement to "right", any particular issue here?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ah I found the issue,
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will fix it and test it. Thanks.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have fixed the error. ‘top’ replace ‘above’. The test result is OK. Thanks. |
||
| Attempt ID | ||
| </span> | ||
| </th> | ||
|
|
@@ -40,12 +40,12 @@ | |
| </span> | ||
| </th> | ||
| <th class="completedColumn"> | ||
| <span data-toggle="tooltip" data-placement="above" title="The completed time of this application."> | ||
| <span data-toggle="tooltip" data-placement="right" title="The completed time of this application."> | ||
| Completed | ||
| </span> | ||
| </th> | ||
| <th> | ||
| <span data-toggle="tooltip" data-placement="above" title="The duration time of this application."> | ||
| <span data-toggle="tooltip" data-placement="right" title="The duration time of this application."> | ||
| Duration | ||
| </span> | ||
| </th> | ||
|
|
@@ -55,12 +55,12 @@ | |
| </span> | ||
| </th> | ||
| <th> | ||
| <span data-toggle="tooltip" data-placement="above" title="The timestamp of the last updating on this application"> | ||
| <span data-toggle="tooltip" data-placement="right" title="The timestamp of the last updating on this application"> | ||
| Last Updated | ||
| </span> | ||
| </th> | ||
| <th> | ||
| <span data-toggle="tooltip" data-placement="above" title="Download the event log for this application"> | ||
| <span data-toggle="tooltip" data-placement="right" title="Download the event log for this application"> | ||
| Event Log | ||
| </span> | ||
| </th> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -195,7 +195,7 @@ $(document).ready(function() { | |
| } | ||
|
|
||
| $(selector).DataTable(conf); | ||
| $('#hisotry-summary [data-toggle="tooltip"]').tooltip(); | ||
| $('#history-summary-table [data-toggle="tooltip"]').tooltip(); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The original is the spelling error. I did not notice that I thought it was ID wrong. I will fix it and test it.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have fixed the spelling error. The test result is OK. But historypage-template.html still need to be modified. Thanks. |
||
| }); | ||
| }); | ||
| }); | ||

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see a reason to change this
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello, you mean, 'the application' is changed to 'this application'? Or 'above' to 'right'?
First, consistent with other field titles.

Second, The tooltip placement to "above", the prompt position will always be displayed on the APP ID, rather than on the current title.