Fixed empty copying overwriting clipboard

This commit is contained in:
lamemakes 2023-03-03 09:16:59 -05:00
parent c488b626bf
commit 909daa4dc2

View file

@ -67,7 +67,7 @@ export class SignalClipboard {
const { ops } = contents;
if (ops === undefined) {
if (ops === undefined || !ops.length) {
return;
}