1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-11 13:34:01 +02:00

fix(frontend): popupのemit型が正しく利用できるように修正 (#16826)

* fix(frontend): popupのemit型が正しく利用できるように修正

* fix: revert unnecessary code (for testing purpose)

* fix lint

* fix type errors

* fix types

* add comment

* fix

* fix

* fix: OverloadToUnionの仕組みを変更

* add comments, clean up

* fix lint

* fix types

* clean up [ci skip]

* fix

* add comments [ci skip]
This commit is contained in:
かっこかり
2026-01-09 12:21:08 +09:00
committed by GitHub
parent 75b5dc1cd8
commit 2a14025c29
24 changed files with 196 additions and 167 deletions

View File

@@ -96,11 +96,11 @@ const fetch = () => {
};
const choose = () => {
selectDriveFolder(null).then(folder => {
if (folder[0] == null) {
selectDriveFolder(null).then(({ folders, canceled }) => {
if (canceled || folders[0] == null) {
return;
}
widgetProps.folderId = folder[0].id;
widgetProps.folderId = folders[0].id;
save();
fetch();
});