fix: pasting images on firefox (#4085)
This commit is contained in:
parent
163ad1f4c4
commit
ba35eb8f8c
@ -1257,10 +1257,13 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = await parseClipboard(event);
|
// must be called in the same frame (thus before any awaits) as the paste
|
||||||
|
// event else some browsers (FF...) will clear the clipboardData
|
||||||
|
// (something something security)
|
||||||
let file = event?.clipboardData?.files[0];
|
let file = event?.clipboardData?.files[0];
|
||||||
|
|
||||||
|
const data = await parseClipboard(event);
|
||||||
|
|
||||||
if (!file && data.text) {
|
if (!file && data.text) {
|
||||||
const string = data.text.trim();
|
const string = data.text.trim();
|
||||||
if (string.startsWith("<svg") && string.endsWith("</svg>")) {
|
if (string.startsWith("<svg") && string.endsWith("</svg>")) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user