Skip to content

Commit 3d258ba

Browse files
committed
fix(data-upload): make to change err message
1 parent a8e7624 commit 3d258ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

superset/views/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2810,7 +2810,7 @@ def schemas_access_for_file_upload(self) -> FlaskResponse:
28102810
get the schema access control settings for file upload in this database
28112811
"""
28122812
if not request.args.get("db_id"):
2813-
return json_error_response("No database is allowed for your csv upload")
2813+
return json_error_response("No database is allowed for your file upload")
28142814

28152815
db_id = int(request.args["db_id"])
28162816
database = db.session.query(Database).filter_by(id=db_id).one()

0 commit comments

Comments
 (0)