From 907b75f12bf0b18927d12a9a11c4046254490601 Mon Sep 17 00:00:00 2001 From: Spythere Date: Sat, 13 Dec 2025 02:13:43 +0100 Subject: [PATCH 1/2] chore(workflows): replaced sending files via rsync instead of scp --- .github/workflows/vps-deploy.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/vps-deploy.yml b/.github/workflows/vps-deploy.yml index f4d54c4..00496f0 100644 --- a/.github/workflows/vps-deploy.yml +++ b/.github/workflows/vps-deploy.yml @@ -19,7 +19,5 @@ jobs: run: | mkdir -p ~/.ssh echo "${{ secrets.VPS_SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa - - name: Clear old assets - run: ssh -o StrictHostKeyChecking=no -v -i ~/.ssh/id_rsa ${{ secrets.VPS_USER }}@${{ secrets.VPS_HOST }} -p 2022 "rm -rf /var/www/$PROJECT_NAME/assets" - name: Send new files - run: scp -o StrictHostKeyChecking=no -v -i ~/.ssh/id_rsa -P 2022 -r ./dist/* ${{ secrets.VPS_USER }}@${{ secrets.VPS_HOST }}:/var/www/$PROJECT_NAME \ No newline at end of file + run: rsync -avP -e "ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa -p 2022" ./dist/ ${{ secrets.VPS_USER }}@${{ secrets.VPS_HOST }}:/var/www/$PROJECT_NAME --delete \ No newline at end of file From c0b892da97a1fd03dd46499d1abf19d6792d0602 Mon Sep 17 00:00:00 2001 From: Spythere Date: Sat, 13 Dec 2025 02:18:35 +0100 Subject: [PATCH 2/2] fix(stations): replaced toolbar from overflow (bugging statistics dropdown) to flex wrap --- src/views/StationsView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/StationsView.vue b/src/views/StationsView.vue index fb45e70..033bea3 100644 --- a/src/views/StationsView.vue +++ b/src/views/StationsView.vue @@ -156,12 +156,12 @@ export default defineComponent({ .stations-topbar { display: flex; + flex-wrap: wrap; gap: 0.5em; justify-content: space-between; - overflow-x: auto; - position: relative; margin-bottom: 0.5em; + position: relative; & > div { display: flex;