diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2021-02-11 16:16:04 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2021-02-11 16:16:04 +0900 |
| commit | cc9bc7703a1d5c56f2bb10dc87a1724b674e6413 (patch) | |
| tree | ae41552456422677bbc6a62353eabbae2cb4cec9 /src/client/pages | |
| parent | アカウント情報が更新されたときに永続化されない問題... (diff) | |
| download | misskey-cc9bc7703a1d5c56f2bb10dc87a1724b674e6413.tar.gz misskey-cc9bc7703a1d5c56f2bb10dc87a1724b674e6413.tar.bz2 misskey-cc9bc7703a1d5c56f2bb10dc87a1724b674e6413.zip | |
スクラッチパッド、ボタンウィジェット、AiScriptウィジェットでトークンを設定するように
Diffstat (limited to 'src/client/pages')
| -rw-r--r-- | src/client/pages/scratchpad.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/pages/scratchpad.vue b/src/client/pages/scratchpad.vue index e070f477be..6ee7ec02fc 100644 --- a/src/client/pages/scratchpad.vue +++ b/src/client/pages/scratchpad.vue @@ -70,7 +70,8 @@ export default defineComponent({ async run() { this.logs = []; const aiscript = new AiScript(createAiScriptEnv({ - storageKey: 'scratchpad' + storageKey: 'scratchpad', + token: this.$i?.token, }), { in: (q) => { return new Promise(ok => { |