Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-07-09 15:08:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-07-09 15:08:17 +0300
commit0e26adf3e663234407a431f6e5eea9255440f4a3 (patch)
tree35b024671e78842713192684084feb29f58a1532 /app/assets/javascripts/admin
parent3834f7913d10b1e549b0c16bf12cd35dd5c97bb4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/admin')
-rw-r--r--app/assets/javascripts/admin/deploy_keys/components/table.vue22
1 files changed, 19 insertions, 3 deletions
diff --git a/app/assets/javascripts/admin/deploy_keys/components/table.vue b/app/assets/javascripts/admin/deploy_keys/components/table.vue
index 29e8b9a724e..46e7ac3cf28 100644
--- a/app/assets/javascripts/admin/deploy_keys/components/table.vue
+++ b/app/assets/javascripts/admin/deploy_keys/components/table.vue
@@ -35,8 +35,12 @@ export default {
label: __('Title'),
},
{
+ key: 'fingerprint_sha256',
+ label: __('Fingerprint (SHA256)'),
+ },
+ {
key: 'fingerprint',
- label: __('Fingerprint'),
+ label: __('Fingerprint (MD5)'),
},
{
key: 'projects',
@@ -130,10 +134,18 @@ export default {
}
this.items = items.map(
- ({ id, title, fingerprint, projects_with_write_access, created_at }) => ({
+ ({
id,
title,
fingerprint,
+ fingerprint_sha256,
+ projects_with_write_access,
+ created_at,
+ }) => ({
+ id,
+ title,
+ fingerprint,
+ fingerprint_sha256,
projects: projects_with_write_access,
created: created_at,
}),
@@ -196,8 +208,12 @@ export default {
>
</template>
+ <template #cell(fingerprint_sha256)="{ item: { fingerprint_sha256 } }">
+ <span v-if="fingerprint_sha256" class="monospace">{{ fingerprint_sha256 }}</span>
+ </template>
+
<template #cell(fingerprint)="{ item: { fingerprint } }">
- <code>{{ fingerprint }}</code>
+ <span v-if="fingerprint" class="monospace">{{ fingerprint }}</span>
</template>
<template #cell(created)="{ item: { created } }">