From 76090ab5da8d8fb959670158759663f8a9b6bc87 Mon Sep 17 00:00:00 2001 From: Padreug Date: Fri, 19 Jun 2026 00:59:29 +0200 Subject: [PATCH 1/2] fix(fleet-ui): wrap pair-dialog steps in template v-if/v-else MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Pair dialog had two interleaved v-if/v-else sibling pairs (q-card-section + q-card-actions per step). Vue requires v-else to immediately follow its v-if sibling, so the second v-else (actions) trailed a v-else (section) — illegal, throwing compiler error 30 ("v-else has no adjacent v-if") and breaking the entire Vue mount. Wrap each step's section+actions in one