diff --git a/src/portal/lib/src/create-edit-endpoint/create-edit-endpoint.component.html b/src/portal/lib/src/create-edit-endpoint/create-edit-endpoint.component.html index ef9dbd343..8a1098f98 100644 --- a/src/portal/lib/src/create-edit-endpoint/create-edit-endpoint.component.html +++ b/src/portal/lib/src/create-edit-endpoint/create-edit-endpoint.component.html @@ -46,7 +46,7 @@ translate }}
diff --git a/src/portal/lib/src/list-replication-rule/list-replication-rule.component.html b/src/portal/lib/src/list-replication-rule/list-replication-rule.component.html index 45ffa0e73..bbe726bb9 100644 --- a/src/portal/lib/src/list-replication-rule/list-replication-rule.component.html +++ b/src/portal/lib/src/list-replication-rule/list-replication-rule.component.html @@ -12,7 +12,7 @@ {{'REPLICATION.REPLICATION_MODE' | translate}} {{'REPLICATION.DESTINATION_NAMESPACE' | translate}} {{'REPLICATION.REPLICATION_TRIGGER' | translate}} - {{'REPLICATION.OVERRIDE' | translate}} + {{'REPLICATION.OVERRIDE' | translate}} {{'REPLICATION.DESCRIPTION' | translate}} {{'REPLICATION.PLACEHOLDER' | translate }} diff --git a/src/portal/lib/src/replication/replication-tasks/replication-tasks.component.html b/src/portal/lib/src/replication/replication-tasks/replication-tasks.component.html index ece741915..2d5e5cd23 100644 --- a/src/portal/lib/src/replication/replication-tasks/replication-tasks.component.html +++ b/src/portal/lib/src/replication/replication-tasks/replication-tasks.component.html @@ -92,7 +92,7 @@ - {{'REPLICATION.TASK_ID'| translate}} + {{'REPLICATION.TASK_ID'| translate}} {{'REPLICATION.RESOURCE_TYPE' | translate}} {{'REPLICATION.SOURCE' | translate}} {{'REPLICATION.DESTINATION' | translate}} diff --git a/src/portal/lib/src/replication/replication.component.html b/src/portal/lib/src/replication/replication.component.html index 9cf1f2e6c..21aa8730b 100644 --- a/src/portal/lib/src/replication/replication.component.html +++ b/src/portal/lib/src/replication/replication.component.html @@ -50,7 +50,7 @@ (click)="openStopExecutionsDialog(selectedRow)">{{'REPLICATION.STOPJOB' | translate}} - {{'REPLICATION.ID' | translate}} + {{'REPLICATION.ID' | translate}} {{'REPLICATION.REPLICATION_TRIGGER' | translate}} {{'REPLICATION.CREATION_TIME' | translate}} {{'REPLICATION.DURATION' | translate}} diff --git a/src/portal/lib/src/replication/replication.component.scss b/src/portal/lib/src/replication/replication.component.scss index 7ccf52090..017f25188 100644 --- a/src/portal/lib/src/replication/replication.component.scss +++ b/src/portal/lib/src/replication/replication.component.scss @@ -70,6 +70,9 @@ } clr-datagrid { + ::ng-deep .datagrid { + min-height: 115px; + } ::ng-deep .datagrid-table { position: static; } diff --git a/src/portal/lib/src/service/endpoint.service.ts b/src/portal/lib/src/service/endpoint.service.ts index 53293fc60..a736089d0 100644 --- a/src/portal/lib/src/service/endpoint.service.ts +++ b/src/portal/lib/src/service/endpoint.service.ts @@ -9,7 +9,7 @@ import { HTTP_GET_OPTIONS } from "../utils"; import { RequestQueryParams } from "./RequestQueryParams"; -import { Endpoint, ReplicationRule } from "./interface"; +import { Endpoint, ReplicationRule, PingEndpoint } from "./interface"; import { catchError, map } from "rxjs/operators"; @@ -112,7 +112,7 @@ export abstract class EndpointService { * @memberOf EndpointService */ abstract pingEndpoint( - endpoint: Endpoint + endpoint: PingEndpoint ): Observable; /** diff --git a/src/portal/lib/src/service/interface.ts b/src/portal/lib/src/service/interface.ts index f3f07ac56..4eeaa0dbb 100644 --- a/src/portal/lib/src/service/interface.ts +++ b/src/portal/lib/src/service/interface.ts @@ -87,6 +87,16 @@ export interface Endpoint extends Base { url: string; } +export interface PingEndpoint extends Base { + access_key?: string; + access_secret?: string; + description: string; + insecure: boolean; + name: string; + type: string; + url: string; +} + export interface Filter { type: string; style: string; diff --git a/src/portal/src/i18n/lang/en-us-lang.json b/src/portal/src/i18n/lang/en-us-lang.json index 0d79bda06..f546b72ed 100644 --- a/src/portal/src/i18n/lang/en-us-lang.json +++ b/src/portal/src/i18n/lang/en-us-lang.json @@ -350,6 +350,7 @@ "CURRENT": "current", "FILTER_PLACEHOLDER": "Filter Tasks", "STOP_TITLE": "Confirm Stop Executions", + "PLEASE_SELECT": "select an option", "STOP_SUCCESS": "Stop Execution {{param}} Successful", "STOP_SUMMARY": "Do you want to stop the executions {{param}}?", "TASK_ID":"Task ID", diff --git a/src/portal/src/i18n/lang/es-es-lang.json b/src/portal/src/i18n/lang/es-es-lang.json index 5acfcc746..e4ac159d5 100644 --- a/src/portal/src/i18n/lang/es-es-lang.json +++ b/src/portal/src/i18n/lang/es-es-lang.json @@ -348,6 +348,7 @@ "CURRENT": "current", "FILTER_PLACEHOLDER": "Filter Tasks", "STOP_TITLE": "Confirme Stop Executions", + "PLEASE_SELECT": "select an option", "STOP_SUCCESS": "Stop Execution {{param}} Successful", "STOP_SUMMARY": "De que desea detener las ejecuciones {{param}}?", "TASK_ID":"Task ID", diff --git a/src/portal/src/i18n/lang/fr-fr-lang.json b/src/portal/src/i18n/lang/fr-fr-lang.json index 333e1d822..dc0bb20fc 100644 --- a/src/portal/src/i18n/lang/fr-fr-lang.json +++ b/src/portal/src/i18n/lang/fr-fr-lang.json @@ -333,6 +333,7 @@ "CURRENT": "current", "FILTER_PLACEHOLDER": "Filter Tasks", "STOP_TITLE": "Confirmer arrêter les exécutions", + "PLEASE_SELECT": "select an option", "STOP_SUCCESS": "Stop Execution {{param}} Successful", "STOP_SUMMARY": "Voulez-vous arrêter les exécutions {{param}}?", "TASK_ID":"Task ID", diff --git a/src/portal/src/i18n/lang/pt-br-lang.json b/src/portal/src/i18n/lang/pt-br-lang.json index 6f4c18141..d5376c250 100644 --- a/src/portal/src/i18n/lang/pt-br-lang.json +++ b/src/portal/src/i18n/lang/pt-br-lang.json @@ -347,6 +347,7 @@ "CURRENT": "current", "FILTER_PLACEHOLDER": "Filter Tasks", "STOP_TITLE": "Confirme as execuções de parada", + "PLEASE_SELECT": "select an option", "STOP_SUCCESS": "Stop Execution {{param}} Successful", "STOP_SUMMARY": "Você quer parar as execuções? {{param}}?", "TASK_ID":"Task ID", diff --git a/src/portal/src/i18n/lang/zh-cn-lang.json b/src/portal/src/i18n/lang/zh-cn-lang.json index b261d91c4..2a14340b2 100644 --- a/src/portal/src/i18n/lang/zh-cn-lang.json +++ b/src/portal/src/i18n/lang/zh-cn-lang.json @@ -348,6 +348,7 @@ "CURRENT": "当前仓库", "FILTER_PLACEHOLDER": "过滤任务", "STOP_TITLE": "确认停止任务", + "PLEASE_SELECT": "请选择", "STOP_SUCCESS": "停止任务 {{param}} 成功", "STOP_SUMMARY": "确认停止任务{{param}}?", "TASK_ID":"任务ID",