Skip to content

Commit

Permalink
Merge branch 'b-7.1.x-OXDEV-8840' into b-7.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieg committed Oct 23, 2024
2 parents fc6abdd + 01fd52e commit cd598ae
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.0.1] - Unreleased

### Fixed
- Fixed empty error box for errorous add folder and rename folder actions

## [2.0.0] - 2024-10-10

### Added
Expand Down Expand Up @@ -43,5 +48,6 @@ Module extracted from wysiwyg module, and used by it now
- Thumbnails are generated on demand and the type of thumbnail file is matching the original image type
- Alternative image directory setting renamed to fit its functionality: Alternative image URL

[2.0.1]: https://github.com/OXID-eSales/media-library-module/compare/v2.0.0..v2.0.1
[2.0.0]: https://github.com/OXID-eSales/media-library-module/compare/v1.0.0..v2.0.0
[1.0.0]: https://github.com/OXID-eSales/media-library-module/compare/f18ab07..v1.0.0
2 changes: 1 addition & 1 deletion assets/out/src/js/base.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/out/src/js/base.min.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions build/js/base/medialibrary.js
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,8 @@
$('.dd-media-file-count', $dialog).text(parseInt($('.dd-media-file-count', $dialog).text()) + 1);
}
},
error: function (result, status, errorThrown) {
ddh.alert(ddh.translate(errorThrown));
error: function (result) {
ddh.alert(ddh.translate(result.responseJSON.error));
}
});
});
Expand Down Expand Up @@ -610,8 +610,8 @@
$('.dd-media-item-label span', activeItem).text(resultJson.name);
ui._loadItemDetails(activeItem.data(), $dialog);
},
error: function (result, status, errorThrown) {
ddh.alert(ddh.translate(errorThrown));
error: function (result) {
ddh.alert(ddh.translate(result.responseJSON.error));
}
});
}
Expand Down

0 comments on commit cd598ae

Please sign in to comment.