dosubot[bot] commented on issue #32790:
URL: https://github.com/apache/superset/issues/32790#issuecomment-2743142849
<!-- Answer -->
To update the prompt in the CSV/Excel upload form for "Columns To Be Parsed
as Dates" to reflect the use of a dropdown list instead of requiring
comma-separated column names, you need to modify the `metadata` description of
the `column_dates` field in the `superset/databases/schemas.py` file. The
updated description should indicate the use of a dropdown list. Here is the
relevant code snippet with the updated description:
```python
column_dates = DelimitedListField(
fields.String(),
metadata={
"description": "[CSV and Excel only] Select column names from a
dropdown list that should be "
"parsed as dates."
},
)
```
This change will update the prompt to better reflect the current
functionality of the form
<sup>[[1]](https://github.com/apache/superset/blob/master/superset/databases/schemas.py)</sup>.
<!-- Dosu Comment Footer -->
*To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
---
<sup>Help Dosu learn! Give it feedback: [Great
Response](https://app.dosu.dev/response-feedback/7c0b7046-8f30-4282-9970-bd4fdac19f04?feedback_type=great_response)
| [Irrelevant
Answer](https://app.dosu.dev/response-feedback/7c0b7046-8f30-4282-9970-bd4fdac19f04?feedback_type=irrelevant_answer)
| [Incorrect
Sources](https://app.dosu.dev/response-feedback/7c0b7046-8f30-4282-9970-bd4fdac19f04?feedback_type=incorrect_sources)
| [Too
Verbose](https://app.dosu.dev/response-feedback/7c0b7046-8f30-4282-9970-bd4fdac19f04?feedback_type=too_verbose)
|
[Hallucination](https://app.dosu.dev/response-feedback/7c0b7046-8f30-4282-9970-bd4fdac19f04?feedback_type=hallucination)
| [Bug
Report](https://app.dosu.dev/response-feedback/7c0b7046-8f30-4282-9970-bd4fdac19f04?feedback_type=bug_report)
|
[Other](https://app.dosu.dev/response-feedback/7c0b7046-8f30-4282-9970-bd4fdac19f04?feedback_type=other)</sup>
--
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]