Skip to content

Commit

Permalink
feature[dashboard] Display version and gitCommitId in one column (#2206)
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?

Display version and gitCommitId in one column

### Why are the changes needed?

Fix: #2205 

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

### How was this patch tested?
Locally

<img width="1299" alt="image" src="https://github.com/user-attachments/assets/93ff9a00-b4ec-4b75-b725-726600639e31">

Co-authored-by: wenlongwlli <[email protected]>
  • Loading branch information
lwllvyb and wenlongwlli authored Oct 21, 2024
1 parent 88dc1e5 commit 152ea7a
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions dashboard/src/main/webapp/src/pages/ApplicationPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,16 +79,13 @@
:formatter="dateFormatter"
sortable
/>
<el-table-column
prop="version"
label="Version"
min-width="180"
/>
<el-table-column
prop="gitCommitId"
label="GitCommitId"
min-width="180"
/>
<el-table-column label="Version" min-width="180">
<template v-slot="{ row }">
<div class="version">
{{ row.version }}_{{ row.gitCommitId }}
</div>
</template>
</el-table-column>
</el-table>
</div>
</div>
Expand Down

0 comments on commit 152ea7a

Please sign in to comment.