Fix preview panel iframe not loading immediately when preview panel is opened in snippets

pull/10714/head
Sage Abdullah 2023-07-25 10:44:14 +01:00
rodzic 0eda6a0a49
commit 7fca33c47d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: EB1A33CC51CC0217
1 zmienionych plików z 3 dodań i 1 usunięć
client/src/entrypoints/admin

Wyświetl plik

@ -232,7 +232,9 @@ function initPreview() {
}
if (WAGTAIL_CONFIG.WAGTAIL_AUTO_UPDATE_PREVIEW) {
let oldPayload = new URLSearchParams(new FormData(form)).toString();
// Start with an empty payload so that when checkAndUpdatePreview is called
// for the first time when the panel is opened, it will always update the preview
let oldPayload = '';
let updateInterval;
const hasChanges = () => {