Skip to content

Commit

Permalink
feat: allow gif when pick file locally (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
datehoer authored Jul 24, 2024
1 parent 904aa8d commit 21c4775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/upload-local-disk-image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const uploadLocalDiskImage = async () => {
const fileUri = ((await window.showOpenDialog({
title: 'Select image',
filters: {
image: ['png', 'jpg', 'bpm', 'jpeg', 'webp', 'svg'],
image: ['png', 'jpg', 'bpm', 'jpeg', 'webp', 'svg', 'gif'],
},
canSelectMany: false,
})) ?? [])[0];
Expand Down

0 comments on commit 21c4775

Please sign in to comment.