Skip to content

Commit

Permalink
Merge pull request #19 from eea/develop
Browse files Browse the repository at this point in the history
Release - fix: error prop expecting boolean, not string - refs #253293
  • Loading branch information
avoinea authored Jul 26, 2023
2 parents e22b2b0 + 42aaa6b commit 4295aab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [0.4.3](https://github.com/eea/volto-nextcloud-video-block/compare/0.4.2...0.4.3) - 26 July 2023

#### :bug: Bug Fixes

- fix: error prop expecting boolean, not string - refs #253293 [Teodor Voicu - [`e9722e5`](https://github.com/eea/volto-nextcloud-video-block/commit/e9722e5585273921e52e5012d89004984a4b075f)]

### [0.4.2](https://github.com/eea/volto-nextcloud-video-block/compare/0.4.1...0.4.2) - 24 July 2023

#### :hammer_and_wrench: Others
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eeacms/volto-nextcloud-video-block",
"version": "0.4.2",
"version": "0.4.3",
"description": "@eeacms/volto-nextcloud-video-block: Volto add-on to embed Videos from NextCloud",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
2 changes: 1 addition & 1 deletion src/NextCloud/NextCloudVideoEdit.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class Edit extends Component {
onFocus={(e) => {
this.props.onSelectBlock(this.props.id);
}}
error={this.state.url && !this.state.valid}
error={!!this.state.url && !this.state.valid}
/>
{this.state.url && (
<Button.Group>
Expand Down

0 comments on commit 4295aab

Please sign in to comment.