fix(frontend): ドライブのファイル選択が不安定な問題を修正 (#16148)
* fix(frontend): ドライブのファイル選択が不安定になっているのを修正 * Update Changelog
This commit is contained in:
parent
26215b7466
commit
5537558fa7
|
@ -4,7 +4,7 @@
|
|||
-
|
||||
|
||||
### Client
|
||||
-
|
||||
- Fix: ドライブファイルの選択が不安定な問題を修正
|
||||
|
||||
### Server
|
||||
-
|
||||
|
|
|
@ -185,7 +185,7 @@ const isRootSelected = ref(false);
|
|||
|
||||
watch(selectedFiles, () => {
|
||||
emit('changeSelectedFiles', selectedFiles.value);
|
||||
});
|
||||
}, { deep: true });
|
||||
|
||||
watch([selectedFolders, isRootSelected], () => {
|
||||
emit('changeSelectedFolders', isRootSelected.value ? [null, ...selectedFolders.value] : selectedFolders.value);
|
||||
|
|
Loading…
Reference in New Issue