diff options
author | Frederick Muriuki Muriithi | 2025-07-02 12:04:13 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-07-02 12:04:13 -0500 |
commit | f871616aec3d89efd144e72e594fbd81cee9e75f (patch) | |
tree | f343af634cf27e6797a3aa7a7b3fa86dead8e033 | |
parent | c745a815669c3d521928a52e423b5121a87c87ac (diff) | |
download | gn-uploader-f871616aec3d89efd144e72e594fbd81cee9e75f.tar.gz |
Allow upload of CSV or TSV files ending with the '.txt' extension.
-rw-r--r-- | uploader/templates/samples/upload-samples.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uploader/templates/samples/upload-samples.html b/uploader/templates/samples/upload-samples.html index 25d3290..6422094 100644 --- a/uploader/templates/samples/upload-samples.html +++ b/uploader/templates/samples/upload-samples.html @@ -66,7 +66,7 @@ <div class="form-group"> <label for="file-samples" class="form-label">select file</label> <input type="file" name="samples_file" id="file:samples" - accept="text/csv, text/tab-separated-values" + accept="text/csv, text/tab-separated-values, text/plain" class="form-control" /> </div> |