fix(libreoffice): correct SYLK extension from sylk to slk
The conventional file extension for SYLK spreadsheets is .slk, not .sylk. Using sylk meant uploaded .slk files would never match the properties entry and would not receive the SYLK infilter. Signed-off-by: Radhakrishnan Pachyappan <gingeekrishna@gmail.com>
This commit is contained in:
parent
394ef1a26b
commit
4f46fc737e
1 changed files with 2 additions and 2 deletions
|
|
@ -55,7 +55,7 @@ export const properties = {
|
|||
"ots",
|
||||
"sxc",
|
||||
"stc",
|
||||
"sylk",
|
||||
"slk",
|
||||
"tab",
|
||||
"tsv",
|
||||
"xls",
|
||||
|
|
@ -154,7 +154,7 @@ const inputFilters: Record<FileCategories, Record<string, string>> = {
|
|||
ots: "calc8_template",
|
||||
sxc: "StarOffice XML (Calc)",
|
||||
stc: "calc_StarOffice_XML_Calc_Template",
|
||||
sylk: "SYLK",
|
||||
slk: "SYLK",
|
||||
tab: "Text - txt - csv (StarCalc)",
|
||||
tsv: "Text - txt - csv (StarCalc)",
|
||||
xls: "MS Excel 97",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue