Skip to content

Commit eccb552

Browse files
authored
fix(adaptive-date): fix adaptive date positioning (#6717)
* fix(adaptive-date): fix adaptive date positioning * fix(adaptive-date): fix adaptive date positioning * fix(playwright): bring ubuntu version to 22 to avoid installation errors * fix(playwright): bring ubuntu version to 22 to avoid installation errors
1 parent c31c3ca commit eccb552

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/on-push-or-pull.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ env:
2626
jobs:
2727
# one run
2828
one_run:
29-
runs-on: ubuntu-latest
29+
runs-on: ubuntu-22.04
3030
steps:
3131
- name: Cancel Previous Runs
3232
uses: styfle/[email protected]
@@ -35,7 +35,7 @@ jobs:
3535

3636
# install dependencies
3737
install:
38-
runs-on: ubuntu-latest
38+
runs-on: ubuntu-22.04
3939
needs: one_run
4040
steps:
4141
- uses: actions/checkout@v3
@@ -50,7 +50,7 @@ jobs:
5050
# build ngx-bootstrap
5151
build:
5252
needs: install
53-
runs-on: ubuntu-latest
53+
runs-on: ubuntu-22.04
5454
steps:
5555
- uses: actions/checkout@v3
5656
- uses: actions/cache@v3
@@ -71,7 +71,7 @@ jobs:
7171
7272
# run unit tests
7373
unit_tests_with_coverage:
74-
runs-on: ubuntu-latest
74+
runs-on: ubuntu-22.04
7575
needs: build
7676
steps:
7777
- uses: actions/checkout@v3
@@ -90,7 +90,7 @@ jobs:
9090

9191
# run linting
9292
linting:
93-
runs-on: ubuntu-latest
93+
runs-on: ubuntu-22.04
9494
needs: install
9595
steps:
9696
- uses: actions/checkout@v3
@@ -103,7 +103,7 @@ jobs:
103103

104104
# firebase deploy preview
105105
firebase_preview:
106-
runs-on: ubuntu-latest
106+
runs-on: ubuntu-22.04
107107
needs: build
108108
outputs:
109109
output_url: ${{ steps.firebase_hosting_preview.outputs.details_url }}
@@ -126,7 +126,7 @@ jobs:
126126
# run playwright
127127
e2e_smoke:
128128
name: e2e smoke (${{ matrix.shard }}/${{ strategy.job-total }})
129-
runs-on: ubuntu-latest
129+
runs-on: ubuntu-22.04
130130
needs: [install, build, firebase_preview]
131131

132132
strategy:
@@ -166,7 +166,7 @@ jobs:
166166

167167
e2e_full:
168168
name: e2e full
169-
runs-on: ubuntu-latest
169+
runs-on: ubuntu-22.04
170170
needs: [e2e_smoke]
171171

172172
strategy:

src/datepicker/themes/bs/bs-datepicker-container.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { NgIf, NgClass, NgSwitch, NgSwitchCase, NgFor, AsyncPipe } from '@angula
3333

3434
@Component({
3535
selector: 'bs-datepicker-container',
36-
providers: [BsDatepickerStore, BsDatepickerEffects, BsDatepickerActions, PositioningService],
36+
providers: [BsDatepickerStore, BsDatepickerEffects, BsDatepickerActions],
3737
templateUrl: './bs-datepicker-view.html',
3838
host: {
3939
class: 'bottom',

0 commit comments

Comments
 (0)