Skip to content

Commit

Permalink
#1059 fix selected timestamp column valid logic
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-wonjune committed Jan 8, 2019
1 parent 5052822 commit 84173c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,6 @@ export class SchemaConfigComponent extends AbstractComponent {
* @private
*/
private _setTimestampFieldList(): void {
this.timestampFieldList = this._originFieldList.filter(field => LogicalType.TIMESTAMP === field.logicalType);
this.timestampFieldList = this._originFieldList.filter(field => !field.unloaded && LogicalType.TIMESTAMP === field.logicalType);
}
}
2 changes: 1 addition & 1 deletion discovery-frontend/src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1969,7 +1969,7 @@
"msg.storage.th.rollup.description.selection" : "(Selection description)",
"msg.storage.th.rollup.description.true" : "True: When you load, do you want to add the count?",
"msg.storage.th.rollup.description.false" : "False: Do you want to keep the original?",
"msg.storage.ui.ph.timestamp.column" : "No time-type column",
"msg.storage.ui.ph.timestamp.column" : "No selected time-type column",
"msg.storage.ui.invalid.json": "Invalid JSON",
"msg.storage.ui.valid.json": "Valid JSON",
"msg.storage.ui.tuning.settings": "Ingestion tuning configuration(Opt.)",
Expand Down
2 changes: 1 addition & 1 deletion discovery-frontend/src/assets/i18n/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -1967,7 +1967,7 @@
"msg.storage.th.rollup.description.selection" : "(선택 설명)",
"msg.storage.th.rollup.description.true" : "설정함: 불러오기 할 때 카운트를 추가 하시겠습니까?",
"msg.storage.th.rollup.description.false" : "설정안함: 원본을 그대로 유지 하시겠습니까?",
"msg.storage.ui.ph.timestamp.column" : "타임타입 컬럼이 없습니다",
"msg.storage.ui.ph.timestamp.column" : "선택된 타임타입 컬럼이 없습니다",
"msg.storage.ui.invalid.json": "잘못된 JSON 형식입니다",
"msg.storage.ui.valid.json": "유효한 JSON 형식입니다",
"msg.storage.ui.tuning.settings": "적재 성능 설정(옵션)",
Expand Down

0 comments on commit 84173c9

Please sign in to comment.