Skip to content

Commit

Permalink
AM Web UI: Reduce logo size and add link (#668)
Browse files Browse the repository at this point in the history
* AM Web: Reduce the logo size to speed up the page loading

* AM Web: Make the link open in another window

* AM Web: Add the link render
  • Loading branch information
zuston authored May 24, 2022
1 parent 7e2e8a5 commit 05d0d6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private String getDashboardContent() {
+ "<td>%s</td> "
+ "<td>%s</td> "
+ "<td>%s</td> "
+ "<td><a href=\"%s}\">LINK</td> "
+ "<td><a href=\"%s\" target=\"_blank\">LINK</td> "
+ "</tr>",
taskInfo.getName() + ":" + taskInfo.getIndex(),
taskInfo.getStatus().name(),
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions tony-core/src/main/resources/dashboard/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
</tr>
<tr>
<th scope="row">AppMaster Log URL</th>
<td>${appMasterLogUrl}</td>
<td><a href="${appMasterLogUrl}" target="_blank">${appMasterLogUrl}</a></td>
</tr>
<tr>
<th scope="row">Tensorboard Log URL</th>
<td>${tensorboardLogUrl}</td>
<td><a href="${tensorboardLogUrl}" target="_blank">${tensorboardLogUrl}</a></td>
</tr>
<tr>
<th scope="row">Runtime Type</th>
Expand Down

0 comments on commit 05d0d6d

Please sign in to comment.