From 8ffe51dd3848ecb3ee389ae6495fcabf850b4ff0 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Wed, 2 Apr 2025 20:36:19 -0700 Subject: [PATCH 1/2] Update stale.yml --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 94744d0c..3557fc1f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -18,5 +18,6 @@ jobs: - name: Stale PR+Issues uses: actions/stale@v9.0.0 with: + days-before-stale: 30 exempt-issue-labels: 'has sponsor,needs sponsor,help wanted,backlog,security issue' exempt-pr-labels: 'has sponsor,needs sponsor,help wanted,backlog,security issue' From f57864dbb598ab17defecb36db10a03f57eeba49 Mon Sep 17 00:00:00 2001 From: Jake-B Date: Fri, 4 Apr 2025 14:11:25 -0400 Subject: [PATCH 2/2] SecureInput fix: multiple buttons in form triggered by one tap --- Meshtastic/Views/Helpers/SecureInput.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Views/Helpers/SecureInput.swift b/Meshtastic/Views/Helpers/SecureInput.swift index 6bcab1d0..aaed8bd1 100644 --- a/Meshtastic/Views/Helpers/SecureInput.swift +++ b/Meshtastic/Views/Helpers/SecureInput.swift @@ -55,7 +55,7 @@ struct SecureInput: View { }) { Image(systemName: self.isSecure ? "eye.slash" : "eye") .accentColor(.secondary) - } + }.buttonStyle(BorderlessButtonStyle()) } } }