mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Update browser-nativefs (#1963)
Incorporates the latest changes in the Native File System API
This commit is contained in:
parent
d3a38202e3
commit
880cac2359
3 changed files with 7 additions and 5 deletions
|
@ -111,7 +111,9 @@ export const actionSaveAsScene = register({
|
|||
title={t("buttons.saveAs")}
|
||||
aria-label={t("buttons.saveAs")}
|
||||
showAriaLabel={useIsMobile()}
|
||||
hidden={!("chooseFileSystemEntries" in window)}
|
||||
hidden={
|
||||
!("chooseFileSystemEntries" in window || "showOpenFilePicker" in window)
|
||||
}
|
||||
onClick={() => updateData(null)}
|
||||
/>
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue