From 6bcdafab84d3bee64ddb8184f72cbb6e1f6f8f97 Mon Sep 17 00:00:00 2001 From: Theone Lucas Date: Fri, 10 Dec 2021 13:05:25 +0100 Subject: [PATCH 1/3] =?UTF-8?q?feat:=20updated=20date=20picker=20component?= =?UTF-8?q?=20to=20reflect=20latest=20changes=20=F0=9F=97=93=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../UiInputDatepicker/UiInputDatepicker.vue | 55 ++++++++----------- 1 file changed, 24 insertions(+), 31 deletions(-) diff --git a/src/components/UiFormInputs/UiInputDatepicker/UiInputDatepicker.vue b/src/components/UiFormInputs/UiInputDatepicker/UiInputDatepicker.vue index bbfa20e..6fca170 100644 --- a/src/components/UiFormInputs/UiInputDatepicker/UiInputDatepicker.vue +++ b/src/components/UiFormInputs/UiInputDatepicker/UiInputDatepicker.vue @@ -21,23 +21,26 @@ /> - + {{ tooltip }} @@ -45,7 +48,7 @@ From 9bbd236073f12f55e7f3c098831ea58ae1ce0177 Mon Sep 17 00:00:00 2001 From: Sven Date: Fri, 10 Dec 2021 14:01:24 +0100 Subject: [PATCH 2/3] Setup node --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3fb42fd..e235711 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,8 +20,11 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '16' + - uses: actions/checkout@v2 # Runs a single command using the runners shell - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. run: | From a5fbb215855cbff52f9dd97b2029d94e0c877c61 Mon Sep 17 00:00:00 2001 From: Theone Lucas Date: Fri, 10 Dec 2021 16:16:47 +0100 Subject: [PATCH 3/3] fix: downgrade node version for github action --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e235711..6fea797 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,9 +6,9 @@ name: Deploy # events but only for the master branch on: push: - branches: [ master ] + branches: [master] pull_request: - branches: [ master ] + branches: [master] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -22,7 +22,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/setup-node@v2 with: - node-version: '16' + node-version: "15" - uses: actions/checkout@v2 # Runs a single command using the runners shell