Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
CSAN
Csan
Commits
03d13ea8
Commit
03d13ea8
authored
Oct 21, 2019
by
Yogi_Wang
Browse files
Improve immutable,fix oidc nightly error
Signed-off-by:
Yogi_Wang
<
yawang@vmware.com
>
parent
e254fe30
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
9 additions
and
1 deletion
+9
-1
src/portal/lib/src/service/interface.ts
src/portal/lib/src/service/interface.ts
+1
-0
src/portal/lib/src/tag/tag.component.html
src/portal/lib/src/tag/tag.component.html
+1
-0
src/portal/src/app/account/account-settings/account-settings-modal.component.scss
...nt/account-settings/account-settings-modal.component.scss
+0
-1
src/portal/src/app/account/account-settings/account-settings-modal.component.ts
...ount/account-settings/account-settings-modal.component.ts
+1
-0
src/portal/src/i18n/lang/en-us-lang.json
src/portal/src/i18n/lang/en-us-lang.json
+1
-0
src/portal/src/i18n/lang/es-es-lang.json
src/portal/src/i18n/lang/es-es-lang.json
+1
-0
src/portal/src/i18n/lang/fr-fr-lang.json
src/portal/src/i18n/lang/fr-fr-lang.json
+1
-0
src/portal/src/i18n/lang/pt-br-lang.json
src/portal/src/i18n/lang/pt-br-lang.json
+1
-0
src/portal/src/i18n/lang/tr-tr-lang.json
src/portal/src/i18n/lang/tr-tr-lang.json
+1
-0
src/portal/src/i18n/lang/zh-cn-lang.json
src/portal/src/i18n/lang/zh-cn-lang.json
+1
-0
No files found.
src/portal/lib/src/service/interface.ts
View file @
03d13ea8
...
...
@@ -68,6 +68,7 @@ export interface Tag extends Base {
labels
:
Label
[];
push_time
?:
string
;
pull_time
?:
string
;
immutable
?:
boolean
;
}
/**
...
...
src/portal/lib/src/tag/tag.component.html
View file @
03d13ea8
...
...
@@ -93,6 +93,7 @@
<clr-dg-row
*clrDgItems=
"let t of tags"
[clrDgItem]=
't'
>
<clr-dg-cell
class=
"truncated flex-max-width"
>
<a
href=
"javascript:void(0)"
(click)=
"onTagClick(t)"
title=
"{{t.name}}"
>
{{t.name}}
</a>
<span
*ngIf=
"t.immutable"
class=
"label label-info ml-1"
>
{{'REPOSITORY.IMMUTABLE' | translate}}
</span>
</clr-dg-cell>
<clr-dg-cell>
{{sizeTransform(t.size)}}
</clr-dg-cell>
<clr-dg-cell
class=
"truncated"
title=
"docker pull {{registryUrl}}/{{repoName}}:{{t.name}}"
>
...
...
src/portal/src/app/account/account-settings/account-settings-modal.component.scss
View file @
03d13ea8
...
...
@@ -19,7 +19,6 @@ clr-modal {
align-items
:
center
;
.reset-cli
{
height
:
30px
;
padding-top
:
8px
;
}
.btn-padding-less
{
padding-left
:
5px
;
...
...
src/portal/src/app/account/account-settings/account-settings-modal.component.ts
View file @
03d13ea8
...
...
@@ -374,6 +374,7 @@ export class AccountSettingsModalComponent implements OnInit, AfterViewChecked {
}
closeReset
()
{
this
.
showSecretDetail
=
false
;
this
.
showGenerateCliFn
();
this
.
resetSecretFrom
.
resetForm
(
new
ResetSecret
());
}
}
src/portal/src/i18n/lang/en-us-lang.json
View file @
03d13ea8
...
...
@@ -622,6 +622,7 @@
"PULL_COMMAND"
:
"Pull Command"
,
"PULL_TIME"
:
"Pull Time"
,
"PUSH_TIME"
:
"Push Time"
,
"IMMUTABLE"
:
"Immutable"
,
"MY_REPOSITORY"
:
"My Repository"
,
"PUBLIC_REPOSITORY"
:
"Public Repository"
,
"DELETION_TITLE_REPO"
:
"Confirm Repository Deletion"
,
...
...
src/portal/src/i18n/lang/es-es-lang.json
View file @
03d13ea8
...
...
@@ -623,6 +623,7 @@
"PULL_COMMAND"
:
"Comando Pull"
,
"PULL_TIME"
:
"Pull Time"
,
"PUSH_TIME"
:
"Push Time"
,
"IMMUTABLE"
:
"Immutable"
,
"MY_REPOSITORY"
:
"Mi Repositorio"
,
"PUBLIC_REPOSITORY"
:
"Repositorio Público"
,
"DELETION_TITLE_REPO"
:
"Confirmar Eliminación de Repositorio"
,
...
...
src/portal/src/i18n/lang/fr-fr-lang.json
View file @
03d13ea8
...
...
@@ -612,6 +612,7 @@
"PULL_COMMAND"
:
"Commande de Pull"
,
"PULL_TIME"
:
"Pull Time"
,
"PUSH_TIME"
:
"Push Time"
,
"IMMUTABLE"
:
"Immutable"
,
"MY_REPOSITORY"
:
"Mon Dépôt"
,
"PUBLIC_REPOSITORY"
:
"Dépôt Public"
,
"DELETION_TITLE_REPO"
:
"Confirmer la Suppresion du Dépôt"
,
...
...
src/portal/src/i18n/lang/pt-br-lang.json
View file @
03d13ea8
...
...
@@ -622,6 +622,7 @@
"PULL_COMMAND"
:
"Comando de Pull"
,
"PULL_TIME"
:
"Pull Time"
,
"PUSH_TIME"
:
"Push Time"
,
"IMMUTABLE"
:
"Immutable"
,
"MY_REPOSITORY"
:
"Meu Repositório"
,
"PUBLIC_REPOSITORY"
:
"Repositório Público"
,
"DELETION_TITLE_REPO"
:
"Confirmar remoção de repositório"
,
...
...
src/portal/src/i18n/lang/tr-tr-lang.json
View file @
03d13ea8
...
...
@@ -621,6 +621,7 @@
"PULL_COMMAND"
:
"İndirme Komutu"
,
"PULL_TIME"
:
"İndirme Zamanı"
,
"PUSH_TIME"
:
"Yükleme Zamanı"
,
"IMMUTABLE"
:
"Immutable"
,
"MY_REPOSITORY"
:
"Depom"
,
"PUBLIC_REPOSITORY"
:
"Genel Depo"
,
"DELETION_TITLE_REPO"
:
"Depo Silme İşlemini Onaylayın"
,
...
...
src/portal/src/i18n/lang/zh-cn-lang.json
View file @
03d13ea8
...
...
@@ -623,6 +623,7 @@
"PULL_COMMAND"
:
"Pull命令"
,
"PULL_TIME"
:
"拉取时间"
,
"PUSH_TIME"
:
"推送时间"
,
"IMMUTABLE"
:
"保留的"
,
"MY_REPOSITORY"
:
"我的仓库"
,
"PUBLIC_REPOSITORY"
:
"公共仓库"
,
"DELETION_TITLE_REPO"
:
"删除镜像仓库确认"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment