mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 01:47:39 -07:00
fix: insert into correct textarea
This commit is contained in:
parent
b395874945
commit
71f9378d35
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "calckey",
|
||||
"version": "13.0.2",
|
||||
"version": "13.0.3",
|
||||
"codename": "aqua",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -148,7 +148,7 @@ export default defineComponent({
|
|||
os.api('drive/files/caption-image', {
|
||||
url: img.src,
|
||||
}).then(text => {
|
||||
insertTextAtCursor(text.slice(0, (512 - ta.value.length)));
|
||||
insertTextAtCursor(ta, text.slice(0, (512 - ta.value.length)));
|
||||
});
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue