From 38e5d64fa821eb7b5a64c8d03deffb629effa0f5 Mon Sep 17 00:00:00 2001 From: Adam DeHaven Date: Mon, 11 Sep 2023 20:28:48 -0400 Subject: [PATCH 1/3] chore: update auto-approve config --- .github/workflows/auto-approve.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-approve.yaml b/.github/workflows/auto-approve.yaml index 09a742aec3..10bba9a0c2 100644 --- a/.github/workflows/auto-approve.yaml +++ b/.github/workflows/auto-approve.yaml @@ -10,7 +10,8 @@ on: pull_request_target jobs: renovate-autoapprove: runs-on: ubuntu-latest - if: ${{ github.actor == 'renovate[bot]' }} + # Do not auto-approve branches `alpha` or `beta` + if: github.actor == 'renovate[bot]' && !contains(github.head_ref || github.ref_name, 'alpha') && !contains(github.head_ref || github.ref_name, 'beta') steps: - name: Approve a PR run: gh pr review --approve "$PR_URL" From 96bfc4bf9fc7c9123fdd1641f4b7240a50b6f51a Mon Sep 17 00:00:00 2001 From: Adam DeHaven Date: Tue, 12 Sep 2023 09:29:05 -0400 Subject: [PATCH 2/3] fix(kfileupload): width --- src/components/KFileUpload/KFileUpload.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/KFileUpload/KFileUpload.vue b/src/components/KFileUpload/KFileUpload.vue index 7f4b3024fd..1b5ad95ae8 100644 --- a/src/components/KFileUpload/KFileUpload.vue +++ b/src/components/KFileUpload/KFileUpload.vue @@ -266,7 +266,7 @@ const resetInput = (): void => { .k-file-upload { position: relative; - width: 100 !important; + width: 100% !important; $kInputPaddingY: var(--kui-space-40, $kui-space-40); $kInputLabelMarginBottom: var(--KInputLabelMargin, var(--spacing-xs, var(--kui-space-40, $kui-space-40))); // matching KLabel margin bottom $kInputLabelLineHeight: var(--KInputLabelLineHeight, var(--type-lg, var(--kui-line-height-30, $kui-line-height-30))); // matching KLabel line height From 06f0d76c11fdbb096203e704a3b83319631f66c0 Mon Sep 17 00:00:00 2001 From: Adam DeHaven Date: Tue, 12 Sep 2023 09:30:59 -0400 Subject: [PATCH 3/3] fix(kfileupload): underline --- src/components/KFileUpload/KFileUpload.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/KFileUpload/KFileUpload.vue b/src/components/KFileUpload/KFileUpload.vue index 1b5ad95ae8..103301a5a3 100644 --- a/src/components/KFileUpload/KFileUpload.vue +++ b/src/components/KFileUpload/KFileUpload.vue @@ -377,6 +377,7 @@ const resetInput = (): void => { left: 20px; pointer-events: none; position: absolute; + text-decoration: none; &.has-label { top: 40px;