Skip to content

Commit 42b49bb

Browse files
Merge pull request #118 from Synicix/labels
Update lables according to feed back
2 parents 5cc8803 + d0ac0cd commit 42b49bb

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
1515
- Fixed redundent props to state copy in tableInfo component PR #117
1616
- Fixed issue where website crashes when opening a filter card for datetime. (#104) PR #106
1717

18+
### Changed
19+
- Changed date time to datetime and Timestamp to timestamp for input block labels (#108) PR #118
20+
1821
## [0.1.0-beta.1] - 2021-02-26
1922
### Added
2023
- Support for double data type (#72) PR #86

src/Components/MainTableView/DataStorageClasses/TableAttribute.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@ class TableAttribute {
158158
typeString = "date";
159159
}
160160
else if (tableAttribute.attributeType === TableAttributeType.DATETIME) {
161-
typeString = "date time";
161+
typeString = "datetime";
162162
}
163163
else if (tableAttribute.attributeType === TableAttributeType.TIME) {
164164
typeString = "HH:MM:SS";
165165
}
166166
else if (tableAttribute.attributeType === TableAttributeType.TIMESTAMP) {
167-
typeString = "TIMESTAMP";
167+
typeString = "timestamp";
168168
}
169169
else if (tableAttribute.attributeType === TableAttributeType.ENUM) {
170170
typeString = "enum";

0 commit comments

Comments
 (0)