Skip to content

Commit

Permalink
change golden tag to current_golden
Browse files Browse the repository at this point in the history
  • Loading branch information
rwxzhu committed Mar 6, 2024
1 parent d04e5ba commit 146b6f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy-board/deploy_board/static/js/base-image-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function getDefaultBaseImageId(baseImagesSorted) {

function mapBaseImagesToOptions(baseImagesSorted) {
return baseImagesSorted.map(o => {
const status = o.golden ? '[GOLDEN]' : (o.acceptance && o.acceptance !== 'UNKNOWN' ? `[${o.acceptance}]` : '');
const status = o.golden ? ' [CURRENT_GOLDEN]' : (o.acceptance && o.acceptance !== 'UNKNOWN' ? ` [${o.acceptance}]` : '');
const date = new Date(o.publish_date);

return {
Expand Down

0 comments on commit 146b6f0

Please sign in to comment.