Skip to content

Commit 687125e

Browse files
fix(PeliasPanel): support windows csv mime type
1 parent f111e63 commit 687125e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/manager/components/deployment/PeliasPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class PeliasPanel extends Component<Props, State> {
106106

107107
const file = files[0]
108108
// TODO: more extensive csv validation?
109-
if (file.type !== 'text/csv') {
109+
if (file.type !== 'text/csv' && file.type !== 'application/vnd.ms-excel') {
110110
return false
111111
}
112112

0 commit comments

Comments
 (0)