Skip to content

Commit 5dec00d

Browse files
jerivefranciscojavierarceo
authored andcommitted
fix: Wrong UI data source type display (feast-dev#3276)
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>
1 parent e2fba60 commit 5dec00d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/pages/data-sources/DataSourcesListingTable.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ const DatasourcesListingTable = ({
3333
name: "Type",
3434
field: "type",
3535
sortable: true,
36-
render: (valueType: feast.types.ValueType.Enum) => {
37-
return feast.types.ValueType.Enum[valueType];
36+
render: (valueType: feast.core.DataSource.SourceType) => {
37+
return feast.core.DataSource.SourceType[valueType];
3838
},
3939
},
4040
];

0 commit comments

Comments
 (0)