Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhance(frontend): デッキのアンテナ・リスト選択画面からそれぞれを新規作成できるように #14104

Merged
merged 14 commits into from
Jul 30, 2024
Merged
Prev Previous commit
Next Next commit
lint
  • Loading branch information
kakkokari-gtyih committed Jun 30, 2024
commit 4a660c14fa6139b4d1dd687295c1502a97b0de7a
2 changes: 1 addition & 1 deletion packages/frontend/src/ui/deck/list-column.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async function setList() {
const { canceled, result: name } = await os.inputText({
title: i18n.ts.enterListName,
});
if (canceled || name == null || name == '') return;
if (canceled || name == null || name === '') return;

const res = await os.apiWithDialog('users/lists/create', { name: name });
userListsCache.delete();
Expand Down
Loading