mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-19 16:55:16 +01:00
Merge pull request #7952 from qiqizjl/log_bugs
Fix some bugs in the Log page
This commit is contained in:
commit
697ec2a52f
@ -25,7 +25,7 @@
|
|||||||
<clr-dg-column [clrDgField]="'repo_tag'">{{'AUDIT_LOG.TAGS' | translate}}</clr-dg-column>
|
<clr-dg-column [clrDgField]="'repo_tag'">{{'AUDIT_LOG.TAGS' | translate}}</clr-dg-column>
|
||||||
<clr-dg-column [clrDgField]="'operation'">{{'AUDIT_LOG.OPERATION' | translate}}</clr-dg-column>
|
<clr-dg-column [clrDgField]="'operation'">{{'AUDIT_LOG.OPERATION' | translate}}</clr-dg-column>
|
||||||
<clr-dg-column [clrDgSortBy]="opTimeComparator">{{'AUDIT_LOG.TIMESTAMP' | translate}}</clr-dg-column>
|
<clr-dg-column [clrDgSortBy]="opTimeComparator">{{'AUDIT_LOG.TIMESTAMP' | translate}}</clr-dg-column>
|
||||||
<clr-dg-placeholder>We couldn't find any logs!</clr-dg-placeholder>
|
<clr-dg-placeholder>{{ 'AUDIT_LOG.NOT_FOUND' | translate }}</clr-dg-placeholder>
|
||||||
<clr-dg-row *ngFor="let l of recentLogs">
|
<clr-dg-row *ngFor="let l of recentLogs">
|
||||||
<clr-dg-cell>{{l.username}}</clr-dg-cell>
|
<clr-dg-cell>{{l.username}}</clr-dg-cell>
|
||||||
<clr-dg-cell>{{l.repo_name}}</clr-dg-cell>
|
<clr-dg-cell>{{l.repo_name}}</clr-dg-cell>
|
||||||
|
@ -67,6 +67,7 @@ export class RecentLogComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public doFilter(terms: string): void {
|
public doFilter(terms: string): void {
|
||||||
|
|
||||||
// allow search by null characters
|
// allow search by null characters
|
||||||
if (terms === undefined || terms === null) {
|
if (terms === undefined || terms === null) {
|
||||||
return;
|
return;
|
||||||
|
@ -416,7 +416,8 @@
|
|||||||
"ITEMS": "items",
|
"ITEMS": "items",
|
||||||
"FILTER_PLACEHOLDER": "Filter Logs",
|
"FILTER_PLACEHOLDER": "Filter Logs",
|
||||||
"INVALID_DATE": "Invalid date.",
|
"INVALID_DATE": "Invalid date.",
|
||||||
"OF": "of"
|
"OF": "of",
|
||||||
|
"NOT_FOUND": "We couldn't find any logs!"
|
||||||
},
|
},
|
||||||
"REPLICATION": {
|
"REPLICATION": {
|
||||||
"YES": "Yes",
|
"YES": "Yes",
|
||||||
|
@ -416,7 +416,8 @@
|
|||||||
"ITEMS": "elementos",
|
"ITEMS": "elementos",
|
||||||
"FILTER_PLACEHOLDER": "Filtrar logs",
|
"FILTER_PLACEHOLDER": "Filtrar logs",
|
||||||
"INVALID_DATE": "Fecha invalida.",
|
"INVALID_DATE": "Fecha invalida.",
|
||||||
"OF": "of"
|
"OF": "of",
|
||||||
|
"NOT_FOUND": "No pudimos encontrar ningún registro!"
|
||||||
},
|
},
|
||||||
"REPLICATION": {
|
"REPLICATION": {
|
||||||
"YES": "Yes",
|
"YES": "Yes",
|
||||||
|
@ -409,7 +409,8 @@
|
|||||||
"ITEMS": "items",
|
"ITEMS": "items",
|
||||||
"FILTER_PLACEHOLDER": "Filtrer les Logs",
|
"FILTER_PLACEHOLDER": "Filtrer les Logs",
|
||||||
"INVALID_DATE": "Date invalide.",
|
"INVALID_DATE": "Date invalide.",
|
||||||
"OF": "de"
|
"OF": "de",
|
||||||
|
"NOT_FOUND": "Nous n'avons trouvé aucun journal!"
|
||||||
},
|
},
|
||||||
"REPLICATION": {
|
"REPLICATION": {
|
||||||
"YES": "Yes",
|
"YES": "Yes",
|
||||||
|
@ -414,7 +414,8 @@
|
|||||||
"ITEMS": "itens",
|
"ITEMS": "itens",
|
||||||
"FILTER_PLACEHOLDER": "Filtrar Logs",
|
"FILTER_PLACEHOLDER": "Filtrar Logs",
|
||||||
"INVALID_DATE": "Data inválida.",
|
"INVALID_DATE": "Data inválida.",
|
||||||
"OF": "de"
|
"OF": "de",
|
||||||
|
"NOT_FOUND": "Nós não encontramos nenhum registro!"
|
||||||
},
|
},
|
||||||
"REPLICATION": {
|
"REPLICATION": {
|
||||||
"YES": "Yes",
|
"YES": "Yes",
|
||||||
|
@ -415,7 +415,8 @@
|
|||||||
"ITEMS": "条记录",
|
"ITEMS": "条记录",
|
||||||
"FILTER_PLACEHOLDER": "过滤日志",
|
"FILTER_PLACEHOLDER": "过滤日志",
|
||||||
"INVALID_DATE": "无效日期。",
|
"INVALID_DATE": "无效日期。",
|
||||||
"OF": "共计"
|
"OF": "共计",
|
||||||
|
"NOT_FOUND": "未发现任何日志!"
|
||||||
},
|
},
|
||||||
"REPLICATION": {
|
"REPLICATION": {
|
||||||
"YES": "是",
|
"YES": "是",
|
||||||
|
Loading…
Reference in New Issue
Block a user