Pass file extensions with leading dot after API change (#2149)

This commit is contained in:
Thomas Steiner 2020-09-10 12:00:18 +02:00 committed by GitHub
parent aaddde5dd9
commit 48c2a13c7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 10 deletions

View file

@ -38,7 +38,7 @@ export const saveAsJSON = async (
{
fileName: name,
description: "Excalidraw file",
extensions: ["excalidraw"],
extensions: [".excalidraw"],
},
fileHandle || null,
);
@ -47,7 +47,7 @@ export const saveAsJSON = async (
export const loadFromJSON = async (appState: AppState) => {
const blob = await fileOpen({
description: "Excalidraw files",
extensions: ["json", "excalidraw"],
extensions: [".json", ".excalidraw"],
mimeTypes: ["application/json"],
});
return loadFromBlob(blob, appState);
@ -71,14 +71,14 @@ export const saveLibraryAsJSON = async () => {
await fileSave(blob, {
fileName,
description: "Excalidraw library file",
extensions: ["excalidrawlib"],
extensions: [".excalidrawlib"],
});
};
export const importLibraryFromJSON = async () => {
const blob = await fileOpen({
description: "Excalidraw library files",
extensions: ["json", "excalidrawlib"],
extensions: [".json", ".excalidrawlib"],
mimeTypes: ["application/json"],
});
Library.importLibrary(blob);