Skip to content

Commit ef19ae7

Browse files
committed
Merge branch 'release/22.9.0'
2 parents 44566bb + 8f70e70 commit ef19ae7

File tree

57 files changed

+221
-229
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+221
-229
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [22.9.0] - 2022-9-21
8+
### Changed
9+
- Misc bug and a11y fixes.
10+
711
## [22.8.0] - 2022-8-29
812
### Added
913
- Registration resources (output reporting)

app/app.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ const App = Application.extend({
6767
services: [
6868
'intl',
6969
'cookies',
70+
'current-user',
7071
'store',
7172
'analytics',
7273
'ready',
@@ -76,6 +77,7 @@ const App = Application.extend({
7677
'head-data',
7778
'osf-modal-state',
7879
'osf-router',
80+
'toast',
7981
],
8082
externalRoutes: {
8183
nodeForks: 'guid-node.forks',

app/guid-file/styles.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
overflow: hidden;
2525
white-space: nowrap;
2626
max-width: 70vw;
27+
height: 40px;
2728
}
2829

2930
.ProjectLink {

app/guid-node/forks/template.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
class='close'
1919
@onClick={{action (mut this.newModal) false}}
2020
>
21-
{{fa-icon 'times' size='sm'}}
21+
<FaIcon @icon='times' @size='sm' />
2222
</BsButton>
2323
<h3>{{t 'forks.create_fork_modal'}}</h3>
2424
</modal.body>
@@ -56,7 +56,7 @@
5656
@route='guid-node.analytics'
5757
@models={{array this.model.guid}}
5858
>
59-
{{fa-icon 'arrow-left'}} {{t 'forks.back'}}
59+
<FaIcon @icon='arrow-left' /> {{t 'forks.back'}}
6060
</OsfLink>
6161
<p
6262
data-test-forks-info

app/guid-node/registrations/template.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
<div>
131131
{{schema.name}}
132132
<span>
133-
{{fa-icon 'info-circle'}}
133+
<FaIcon @icon='info-circle' />
134134
<BsTooltip>
135135
{{schema.schema.description}}
136136
</BsTooltip>

app/guid-registration/forks/template.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
class='close'
2323
@onClick={{action this.closeNewModal}}
2424
>
25-
{{fa-icon 'times' size='sm'}}
25+
<FaIcon @icon='times' @size='sm' />
2626
</BsButton>
2727
<h3>{{t 'forks.create_fork_modal'}}</h3>
2828
</modal.body>
@@ -61,7 +61,7 @@
6161
@route='guid-registration.analytics'
6262
@models={{array this.model.guid}}
6363
>
64-
{{fa-icon 'arrow-left'}} {{t 'forks.back'}}
64+
<FaIcon @icon='arrow-left' /> {{t 'forks.back'}}
6565
</OsfLink>
6666
<p
6767
data-test-forks-info

app/institutions/index/template.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
@type='link'
105105
@onClick={{action 'next'}}
106106
>
107-
{{fa-icon 'chevron-down' class='Institutions__pagination'}}
107+
<FaIcon @icon='chevron-down' class='Institutions__pagination' />
108108
</BsButton>
109109
{{/if}}
110110
</div>

app/settings/developer-apps/-components/client-secret/template.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
@onClick={{action this.toggleShowSecret}}
1616
>
1717
{{#if this.shouldShowSecret}}
18-
{{fa-icon 'eye-slash'}}
18+
<FaIcon @icon='eye-slash' />
1919
{{t 'settings.developer-apps.hideSecret'}}
2020
{{else}}
21-
{{fa-icon 'eye'}}
21+
<FaIcon @icon='eye' />
2222
{{t 'settings.developer-apps.showSecret'}}
2323
{{/if}}
2424
</BsButton>

app/settings/developer-apps/create/template.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
data-analytics-name='Back to list'
55
@route='settings.developer-apps'
66
>
7-
{{fa-icon 'arrow-left'}}
7+
<FaIcon @icon='arrow-left' />
88
{{t 'settings.developer-apps.backToList'}}
99
</OsfLink>
1010
</div>

app/settings/developer-apps/edit/template.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
data-analytics-scope='Back to list'
55
@route='settings.developer-apps'
66
>
7-
{{fa-icon 'arrow-left'}}
7+
<FaIcon @icon='arrow-left' />
88
{{t 'settings.developer-apps.backToList'}}
99
</OsfLink>
1010

0 commit comments

Comments
 (0)