Skip to content

Commit

Permalink
Fixed #12927
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Mar 20, 2023
1 parent e2f7e7b commit e39861b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@
- The `|json_encode` Twig filter now calls `craft\helpers\Json::encode()` internally, improving error handling. ([#12919](https://github.com/craftcms/cms/issues/12919))
- `craft\helpers\Json::encode()` no longer sets the `JSON_UNESCAPED_SLASHES` flag by default.
- Fixed a JavaScript error that occurred when resolving an asset move conflict. ([#12920](https://github.com/craftcms/cms/issues/12920))
- Fixed a bug where volume subfolders were being shown when viewing soft-deleted assets. ([#12927](https://github.com/craftcms/cms/issues/12927))

## 3.8.3 - 2023-03-16

Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/cp/dist/cp.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/cp/dist/cp.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/cp/src/js/AssetIndex.js
Expand Up @@ -381,7 +381,7 @@ Craft.AssetIndex = Craft.BaseElementIndex.extend(

getViewParams: function () {
const data = Object.assign(this.base(), {
showFolders: this.settings.showFolders,
showFolders: this.settings.showFolders && !this.trashed,
foldersOnly: this.settings.foldersOnly,
});

Expand Down

0 comments on commit e39861b

Please sign in to comment.