1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Mobile: Add support for drawing pictures (#7588)

This commit is contained in:
Henry Heino
2023-10-02 07:15:51 -07:00
committed by GitHub
parent 487112fd4d
commit 849427d1bf
35 changed files with 1419 additions and 46 deletions

View File

@ -0,0 +1,6 @@
const isEditableResource = (resourceMime: string) => {
return resourceMime === 'image/svg+xml';
};
export default isEditableResource;