Added falsy check for ops
This commit is contained in:
@@ -67,7 +67,7 @@ export class SignalClipboard {
|
||||
|
||||
const { ops } = contents;
|
||||
|
||||
if (ops === undefined || !ops.length) {
|
||||
if (!ops || !ops.length) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user