Skip to content

Commit

Permalink
fix: add space after comma
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegec committed Apr 5, 2024
1 parent c9bf812 commit 7f181b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/pages/jobs/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
</v-card-subtitle>
</v-card-item>
<v-card-text>
Creation time: {{ job.creation_time }} {{ job.creation_time !== undefined && job.creation_time !== null ? ("," + new TimeAgo('en-US').format(new Date(job.creation_time))) : "" }}
Creation time: {{ job.creation_time }}{{ job.creation_time !== undefined && job.creation_time !== null ? (", " + new TimeAgo('en-US').format(new Date(job.creation_time))) : "" }}
<br/>
Running since: {{ job.assign_time }} {{ job.assign_time !== undefined && job.assign_time !== null ? ("," + new TimeAgo('en-US').format(new Date(job.assign_time))) : "" }}
Running since: {{ job.assign_time }}{{ job.assign_time !== undefined && job.assign_time !== null ? (", " + new TimeAgo('en-US').format(new Date(job.assign_time))) : "" }}
<br/>
Time elapsed: {{ job.elapsed_secs }}
<br/>
Finish time: {{ job.finish_time }} {{ job.finish_time !== undefined && job.finish_time !== null ? ("," + new TimeAgo('en-US').format(new Date(job.finish_time))) : "" }}
Finish time: {{ job.finish_time }}{{ job.finish_time !== undefined && job.finish_time !== null ? (", " + new TimeAgo('en-US').format(new Date(job.finish_time))) : "" }}
<br/>
Git commit: <a :href="`https://github.com/AOSC-Dev/aosc-os-abbs/commit/${job.git_sha}`">
{{ job.git_sha }}
Expand Down

0 comments on commit 7f181b5

Please sign in to comment.