From 7065b4897e8f2a6492cb19c8ab921d66cf8c2221 Mon Sep 17 00:00:00 2001 From: Artem Poltorzhitskiy Date: Sat, 21 Oct 2023 16:44:57 +0200 Subject: [PATCH] Fix: request diffs for simulated operations (#568) --- src/components/InternalOperation.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/InternalOperation.vue b/src/components/InternalOperation.vue index e94877e4..7da227d3 100644 --- a/src/components/InternalOperation.vue +++ b/src/components/InternalOperation.vue @@ -435,6 +435,7 @@ export default { methods: { ...mapActions(["showClipboardOK", "showError"]), getDiff() { + if (!this.data.id) return; if (this.data.status !== "applied") return; if (this.diffs !== null) return; if (this.data.storage_diff) {