Skip to content

Commit 1d4f77d

Browse files
committed
Merge branch 'master' into develop
2 parents f08d034 + ce879b9 commit 1d4f77d

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Changes in [2.2.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v2.2.1) (2020-03-04)
2+
===================================================================================================
3+
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v2.2.0...v2.2.1)
4+
5+
* Adjust scroll offset with relative scrolling
6+
[\#4171](https://github.com/matrix-org/matrix-react-sdk/pull/4171)
7+
* Disable registration flows on SSO servers
8+
[\#4169](https://github.com/matrix-org/matrix-react-sdk/pull/4169)
9+
110
Changes in [2.2.0](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v2.2.0) (2020-03-02)
211
===================================================================================================
312
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v2.2.0-rc.1...v2.2.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "matrix-react-sdk",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "SDK for matrix.org using React",
55
"author": "matrix.org",
66
"repository": {

src/components/views/elements/ImageView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export default class ImageView extends React.Component {
216216
{ this.getName() }
217217
</div>
218218
{ eventMeta }
219-
<a className="mx_ImageView_link" href={ this.props.src } download={ this.props.name } rel="noreferrer noopener">
219+
<a className="mx_ImageView_link" href={ this.props.src } download={ this.props.name } target="_blank" rel="noopener">
220220
<div className="mx_ImageView_download">
221221
{ _t('Download this file') }<br />
222222
<span className="mx_ImageView_size">{ sizeRes }</span>

0 commit comments

Comments
 (0)