Skip to content

Commit

Permalink
[SPARK-45151][UI][FOLLOWUP] Add missing space before date value
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?

Add missing space before date value
<img width="918" alt="image" src="https://github.com/user-attachments/assets/2fa6a9b6-e16a-4d79-909b-91cea698f73b">

### Why are the changes needed?

A minor UI fix, and make it consistent with
https://github.com/apache/spark/blob/28951ed6681f9f0ad28908fd92b2c4a871fa5958/core/src/main/scala/org/apache/spark/ui/exec/ExecutorThreadDumpPage.scala#L75

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Review.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes #48952 from pan3793/SPARK-45151-space.

Authored-by: Cheng Pan <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
  • Loading branch information
pan3793 authored and dongjoon-hyun committed Nov 25, 2024
1 parent 5dc65a5 commit 214fd53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private[spark] class TaskThreadDumpPage(

<div class="row">
<div class="col-12">
<p>Updated at{UIUtils.formatDate(time)}</p>
<p>Updated at {UIUtils.formatDate(time)}</p>
<table class={UIUtils.TABLE_CLASS_NOT_STRIPED + " accordion-group"}>
<thead>
<th>Thread ID</th>
Expand Down

0 comments on commit 214fd53

Please sign in to comment.