Merge tag '13.14.2' into io

This commit is contained in:
まっちゃとーにゅ 2023-07-27 18:21:05 +09:00
commit 3343ba8b8a
No known key found for this signature in database
GPG key ID: 6AFBBF529601C1DB
46 changed files with 2221 additions and 326 deletions

View file

@ -541,7 +541,7 @@ function onCompositionEnd(ev: CompositionEvent) {
}
async function onPaste(ev: ClipboardEvent) {
for (const { item, i } of Array.from(ev.clipboardData.items).map((item, i) => ({ item, i }))) {
for (const { item, i } of Array.from(ev.clipboardData.items, (item, i) => ({ item, i }))) {
if (item.kind === 'file') {
const file = item.getAsFile();
const lio = file.name.lastIndexOf('.');
@ -908,7 +908,6 @@ defineExpose({
display: flex;
flex-wrap: nowrap;
gap: 4px;
margin-bottom: -10px;
}
.headerLeft {
@ -1026,7 +1025,7 @@ defineExpose({
}
.targetNote {
padding: 10px 20px 16px 20px;
padding: 0 20px 16px 20px;
}
.withQuote {