Revert "Handle the case where the pasted data is not an image" (#7668)

Revert "Handle the case where the pasted data is not an image (#7628)"

This reverts commit d33da65dae.
This commit is contained in:
Andrew Henry 2024-04-04 15:03:45 -07:00 committed by GitHub
parent d33da65dae
commit b18aa48141
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,7 +31,7 @@
@drop.capture="cancelEditMode" @drop.capture="cancelEditMode"
@drop.prevent="dropOnEntry" @drop.prevent="dropOnEntry"
@click="selectAndEmitEntry($event, entry)" @click="selectAndEmitEntry($event, entry)"
@paste="addImageOrTextFromPaste" @paste="addImageFromPaste"
> >
<div class="c-ne__time-and-content"> <div class="c-ne__time-and-content">
<div class="c-ne__time-and-creator-and-delete"> <div class="c-ne__time-and-creator-and-delete">
@ -384,7 +384,7 @@ export default {
this.manageEmbedLayout(); this.manageEmbedLayout();
}, },
async addImageOrTextFromPaste(event) { async addImageFromPaste(event) {
const clipboardItems = Array.from( const clipboardItems = Array.from(
(event.clipboardData || event.originalEvent.clipboardData).items (event.clipboardData || event.originalEvent.clipboardData).items
); );
@ -409,9 +409,7 @@ export default {
}) })
); );
this.manageEmbedLayout(); this.manageEmbedLayout();
// the pasted clipboard data also include text (or text only and no images). this.timestampAndUpdate();
// So we will also update the text here
this.updateEntryValue(event);
}, },
convertMarkDownToHtml(text = '') { convertMarkDownToHtml(text = '') {
let markDownHtml = this.marked.parse(text, { let markDownHtml = this.marked.parse(text, {