Skip to content

Commit

Permalink
fix: Wrong UI data source type display (feast-dev#3276)
Browse files Browse the repository at this point in the history
fix: wrong UI data source type display

Signed-off-by: Jerome Viveret <jerome.viveret@gmail.com>

Signed-off-by: Jerome Viveret <jerome.viveret@gmail.com>
  • Loading branch information
jerive authored and franciscojavierarceo committed Oct 18, 2022
1 parent e2fba60 commit 5dec00d
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 5dec00d

Please sign in to comment.