forked from woem.men/forkey
fix(frontend/role): ロールの割り当て時メモを入力しないとキャンセル扱いされる問題を修正 (MisskeyIO#866)
This commit is contained in:
parent
f7ac3c5493
commit
3750888c6a
2 changed files with 2 additions and 2 deletions
|
@ -506,7 +506,7 @@ async function assignRole() {
|
|||
const { canceled: canceled3, result: memo } = await os.inputText({
|
||||
title: i18n.ts.addMemo,
|
||||
type: 'textarea',
|
||||
placeholder: i18n.ts.memo,
|
||||
default: '',
|
||||
});
|
||||
if (canceled3) return;
|
||||
|
||||
|
|
|
@ -146,7 +146,7 @@ async function assign() {
|
|||
const { canceled: canceled3, result: memo } = await os.inputText({
|
||||
title: i18n.ts.addMemo,
|
||||
type: 'textarea',
|
||||
placeholder: i18n.ts.memo,
|
||||
default: '',
|
||||
});
|
||||
if (canceled3) return;
|
||||
|
||||
|
|
Loading…
Reference in a new issue