From 77f4ffddc1ce8cc57ce7227999fc87049c401605 Mon Sep 17 00:00:00 2001 From: Doug Danat Date: Mon, 25 Mar 2024 11:21:34 +0100 Subject: [PATCH] add htm/html to supported extensions in ui --- src/lib/constants.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/constants.ts b/src/lib/constants.ts index bdd9c64e..5adefe56 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -22,6 +22,7 @@ export const SUPPORTED_FILE_TYPE = [ 'text/plain', 'text/csv', 'text/xml', + 'text/html', 'text/x-python', 'text/css', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', @@ -50,6 +51,8 @@ export const SUPPORTED_FILE_EXTENSIONS = [ 'h', 'c', 'cs', + 'htm', + 'html', 'sql', 'log', 'ini',