Skip to content

Commit

Permalink
feat: oci 仓库版本详情页基本信息中添加OS/ARCH字段展示 TencentBlueKing#1689
Browse files Browse the repository at this point in the history
  • Loading branch information
gujunling committed Jan 26, 2024
1 parent d71b630 commit 9ecf352
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
<span v-if="detail.basic.groupId" class="ml5 repo-tag"> {{ detail.basic.groupId }} </span>
</span>
</div>
<div v-if="detail.basic.platform" class="package-platform grid-item">
<label>OS/ARCH</label>
<span class="flex-1 text-overflow" :title="detail.basic.platform.join()">{{ detail.basic.platform.join() }}</span>
</div>
<div class="grid-item"
v-for="{ name, label, value } in detailInfoMap"
:key="name">
Expand Down Expand Up @@ -335,6 +339,7 @@
}
}
.package-name,
.package-platform,
.package-description {
grid-column: 1 / 3;
}
Expand Down

0 comments on commit 9ecf352

Please sign in to comment.