rebenitez1802 commented on code in PR #35488:
URL: https://github.com/apache/superset/pull/35488#discussion_r2407051126
##########
superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:
##########
@@ -68,9 +68,11 @@ const DatasetSelect = ({ onChange, value }:
DatasetSelectProps) => {
const list: {
label: string | ReactNode;
value: string | number;
+ customLabel: string;
}[] = response.json.result.map((item: Dataset) => ({
label: DatasetSelectLabel(item),
value: item.id,
+ customLabel: item.table_name,
Review Comment:
Thanks for the comment, I removed customLabel and also fixed the same on
Chart creation that was also using customLabel pattern.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]