Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: wrong UI data source type display
Signed-off-by: Jerome Viveret <jerome.viveret@gmail.com>
  • Loading branch information
jerive committed Oct 7, 2022
commit 3b6202610f291b83880757b6e1c0d38660d0ebe5
4 changes: 2 additions & 2 deletions ui/src/pages/data-sources/DataSourcesListingTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const DatasourcesListingTable = ({
name: "Type",
field: "type",
sortable: true,
render: (valueType: feast.types.ValueType.Enum) => {
return feast.types.ValueType.Enum[valueType];
render: (valueType: feast.core.DataSource.SourceType) => {
return feast.core.DataSource.SourceType[valueType];
},
},
];
Expand Down