mirror of
https://github.com/cloudreve/frontend.git
synced 2025-12-25 19:52:48 +00:00
fix(explorer): save as shortcut does not work for shared folders in community edition (cloudreve/cloudreve#2818)
This commit is contained in:
parent
31698e2288
commit
e53eb86a32
|
|
@ -872,7 +872,7 @@ export function createShareShortcut(index: number): AppThunk {
|
|||
const base = fm?.path_root;
|
||||
const isSingleFile = fm?.list?.single_file_view;
|
||||
const files = fm?.list?.files;
|
||||
if (!base || !isSingleFile || !files || files.length != 1) {
|
||||
if (!base || !files) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue