From 958164b60bc6442df1781356a658d73b8811af7a Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Thu, 18 Jun 2026 12:42:29 -0400 Subject: [PATCH 1/2] Fix volunteer selection auto-scroll on manager dashboard --- .../Volunteer/VolunteerManagePanel.vue | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/resources/js/Components/Volunteer/VolunteerManagePanel.vue b/resources/js/Components/Volunteer/VolunteerManagePanel.vue index 2af2da8..0411b10 100644 --- a/resources/js/Components/Volunteer/VolunteerManagePanel.vue +++ b/resources/js/Components/Volunteer/VolunteerManagePanel.vue @@ -73,23 +73,22 @@ function attention() { // @ts-expect-error const el = panel.value!.$el; - // Pulse the panel border setTimeout(() => { + // Pulse the panel border el.classList.add('border-primary'); - if (attnTimeout) clearTimeout(attnTimeout); - attnTimeout = setTimeout(() => { el.classList.remove('border-primary'); attnTimeout = null; }, 500); - }, 0); - // Scroll to the panel if the header isn't in view - if (!isElementInView(closeBtn.value!.$el)) { - el.scrollIntoView({ - block: el.clientHeight < window.innerHeight ? 'center' : 'start', - }); - } + // Scroll to the panel if the header isn't in view + if (!isElementInView(closeBtn.value!.$el)) { + el.scrollIntoView({ + block: el.clientHeight < window.innerHeight ? 'center' : 'start', + container: 'nearest', + }); + } + }, 0); } From 6b879f36a074de25741b85995d02a60a64e38af5 Mon Sep 17 00:00:00 2001 From: Travis Molick Date: Sun, 21 Jun 2026 00:17:23 -0700 Subject: [PATCH 2/2] Skip merge job on pull requests --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bc12d61..c41e5a4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -96,6 +96,7 @@ jobs: merge: name: "Merge: ${{ matrix.image.name }}" runs-on: ubuntu-latest + if: github.event_name != 'pull_request' needs: - build strategy: