Skip to content
代码片段 群组 项目
提交 17d36c2b 编辑于 作者: Jannik Lehmann's avatar Jannik Lehmann
浏览文件

Merge branch...

Merge branch '408863-do-not-attempt-to-display-a-configuration-digest-for-container-registry-tags' into 'master' 

Hide config digest for manifest list tags

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/138005



Merged-by: default avatarJannik Lehmann <jlehmann@gitlab.com>
Approved-by: default avatarSerhii Yarynovskyi <syarynovskyi@gitlab.com>
Approved-by: default avatarJannik Lehmann <jlehmann@gitlab.com>
Co-authored-by: default avatarRahul Chanila <rchanila@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -119,9 +119,15 @@ export default { ...@@ -119,9 +119,15 @@ export default {
tagLocation() { tagLocation() {
return this.tag.path?.replace(`:${this.tag.name}`, ''); return this.tag.path?.replace(`:${this.tag.name}`, '');
}, },
isEmptyRevision() {
return this.tag.revision === '';
},
isInvalidTag() { isInvalidTag() {
return !this.tag.digest; return !this.tag.digest;
}, },
showConfigDigest() {
return !this.isInvalidTag && !this.isEmptyRevision;
},
}, },
}; };
</script> </script>
...@@ -235,7 +241,7 @@ export default { ...@@ -235,7 +241,7 @@ export default {
/> />
</details-row> </details-row>
</template> </template>
<template v-if="!isInvalidTag" #details-configuration-digest> <template v-if="showConfigDigest" #details-configuration-digest>
<details-row icon="cloud-gear" data-testid="configuration-detail"> <details-row icon="cloud-gear" data-testid="configuration-detail">
<gl-sprintf :message="$options.i18n.CONFIGURATION_DETAILS_ROW_TEST"> <gl-sprintf :message="$options.i18n.CONFIGURATION_DETAILS_ROW_TEST">
<template #digest> <template #digest>
......
...@@ -342,6 +342,13 @@ describe('tags list row', () => { ...@@ -342,6 +342,13 @@ describe('tags list row', () => {
expect(findDetailsRows().length).toBe(3); expect(findDetailsRows().length).toBe(3);
}); });
it('has 2 details rows when revision is empty', async () => {
mountComponent({ tag: { ...tag, revision: '' } });
await nextTick();
expect(findDetailsRows().length).toBe(2);
});
describe.each` describe.each`
name | finderFunction | text | icon | clipboard name | finderFunction | text | icon | clipboard
${'published date detail'} | ${findPublishedDateDetail} | ${'Published to the gitlab-org/gitlab-test/rails-12009 image repository at 13:29:38 UTC on 2020-11-03'} | ${'clock'} | ${false} ${'published date detail'} | ${findPublishedDateDetail} | ${'Published to the gitlab-org/gitlab-test/rails-12009 image repository at 13:29:38 UTC on 2020-11-03'} | ${'clock'} | ${false}
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册