File tree Expand file tree Collapse file tree 7 files changed +13
-15
lines changed
tests/integration/components/events/view Expand file tree Collapse file tree 7 files changed +13
-15
lines changed Original file line number Diff line number Diff line change @@ -101,9 +101,4 @@ updates:
101
101
- dependency-name : " @babel/core"
102
102
versions :
103
103
- 7.13.0
104
- - 7.13.1
105
- - package-ecosystem : " github-actions"
106
- directory : " /"
107
- schedule :
108
- interval : daily
109
- open-pull-requests-limit : 10
104
+ - 7.13.1
Original file line number Diff line number Diff line change 54
54
needs : install
55
55
runs-on : ubuntu-latest
56
56
steps :
57
- - uses : actions/checkout@v2
58
- with :
59
- fetch-depth : 0
57
+ - uses : actions/checkout@v3
58
+ - name : Copy .env
59
+ run : cp '.env.example' '.env'
60
60
- name : Setup Node.js
61
61
uses : actions/setup-node@v1
62
62
with :
69
69
# no restore-keys here, so we only accept this exact version
70
70
- run : yarn l10n:generate
71
71
- run : COVERAGE=true yarn test
72
- env :
73
- API_HOST : https://open-event.dokku.fossasia.org
74
72
- name : Code Coverage
75
73
uses : codecov/codecov-action@v1
76
74
Original file line number Diff line number Diff line change @@ -10,11 +10,15 @@ interface Args {
10
10
videoStream : VideoStream
11
11
}
12
12
13
+ interface Query {
14
+ [ key : string ] : string | string [ ] | undefined ;
15
+ }
16
+
13
17
export default class PublicStreamJitsiStream extends Component < Args > {
14
18
@service
15
19
authManager ! : AuthManagerService ;
16
20
17
- getRoomName ( parsedUrl : UrlParser ) : string {
21
+ getRoomName ( parsedUrl : UrlParser < Query > ) : string {
18
22
return parsedUrl . pathname . slice ( 1 ) ; // drop leading slash
19
23
}
20
24
Original file line number Diff line number Diff line change 14
14
<div class =" right menu nav-bar" >
15
15
{{ #if (and this.isNotEventPageRoute this.isNotExplorePageRoute this.isNotWizardPageRoute )}}
16
16
<div class =" search-bar d-flex items-center space-between m-2 p-2" >
17
- <Input @class =" prompt" @type =" text" @key-up ={{ " handleKeyPress" }} @value ={{ this.event_name }} placeholder ={{ t " Search" }} />
17
+ <Input @class =" prompt" @type =" text" @key-up ={{ action " handleKeyPress" }} @value ={{ this.event_name }} placeholder ={{ t " Search" }} />
18
18
<i class =" search icon" ></i >
19
19
</div >
20
20
{{ /if }}
77
77
<div class =" ui header small text" >{{ this.settings.appName }} </div >
78
78
</LinkTo >
79
79
<div id =" mobile-bar" class =" search-bar search-bar-mobile d-flex items-center space-between m-1 p-2" >
80
- <Input @class =" prompt" id =" mobileSearchBar" @type =" text" @key-up ={{ " handleKeyPress" }} @value ={{ this.event_name }} placeholder ={{ t " Search" }} />
80
+ <Input @class =" prompt" id =" mobileSearchBar" @type =" text" @key-up ={{ action " handleKeyPress" }} @value ={{ this.event_name }} placeholder ={{ t " Search" }} />
81
81
<i role =" button" class =" search icon" style =" cursor: auto;" {{ on " click" this.searchOnClick }} ></i >
82
82
</div >
83
83
<div class =" right menu nav-bar" >
Original file line number Diff line number Diff line change 1
1
<div class =" ui left inverted vertical menu sidebar {{ if this.sidebarVisible ' visible' }} " >
2
2
<div class =" search-bar d-flex items-center space-between m-2 p-2" >
3
- <Input @class =" prompt" @type =" text" @key-up ={{ " handleKeyPress" }} @value ={{ this.event_name }} placeholder ={{ t " Search" }} />
3
+ <Input @class =" prompt" @type =" text" @key-up ={{ action " handleKeyPress" }} @value ={{ this.event_name }} placeholder ={{ t " Search" }} />
4
4
<i class =" search icon" ></i >
5
5
</div >
6
6
{{ #if this.session.isAuthenticated }}
File renamed without changes.
Original file line number Diff line number Diff line change 20
20
"baseUrl" : " ." ,
21
21
"module" : " es6" ,
22
22
"experimentalDecorators" : true ,
23
+ "skipLibCheck" : true ,
23
24
"paths" : {
24
25
"open-event-frontend/tests/*" : [
25
26
" tests/*"
You can’t perform that action at this time.
0 commit comments