Merge tag '13.14.2' into io
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user