File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/Components/MainTableView/DataStorageClasses Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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" ;
You can’t perform that action at this time.
0 commit comments