From ec30c9076952f679ba41ecdec08d1bb745894bfd Mon Sep 17 00:00:00 2001 From: Igor Zinken Date: Tue, 19 Jan 2021 19:24:19 +0100 Subject: [PATCH] Temporarily remove image loading from file menu as interface needs to be aligned --- src/store/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index de3fe60..d3a1fc5 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -162,7 +162,8 @@ export default { actions: { async loadDocument({ commit }, file = null ) { if ( !file ) { - const fileList = await selectFile( `${PROJECT_FILE_EXTENSION},${ACCEPTED_FILE_TYPES.join( "," )}`, false ); + const fileList = await selectFile( PROJECT_FILE_EXTENSION, false ); +// const fileList = await selectFile( `${PROJECT_FILE_EXTENSION},${ACCEPTED_FILE_TYPES.join( "," )}`, false ); if ( !fileList?.length ) { return; }