Skip to content

Commit

Permalink
Added description to database action
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Mar 14, 2024
1 parent 16546e7 commit c02465e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
datasette-version: ["<1.0", ">=1.0a7"]
datasette-version: ["<1.0", ">=1.0a13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion datasette_upload_csvs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ async def inner():
"href": datasette.urls.path(
"/-/upload-csvs?database={}".format(quote_plus(db.name))
),
"label": "Upload a CSV",
"label": "Upload CSV",
"description": "Create a new table by uploading a CSV file",
}
]

Expand Down

0 comments on commit c02465e

Please sign in to comment.