Skip to content

Commit 329bcfa

Browse files
committed
Fixed #11977
1 parent 38a0117 commit 329bcfa

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes for Craft CMS 3.x
22

3+
## Unreleased
4+
5+
### Fixed
6+
- Fixed a bug where the “New category” button could be missing from the Categories index page. ([#11977](https://github.com/craftcms/cms/issues/11977))
7+
38
## 3.7.55 - 2022-09-20
49

510
### Added

src/web/assets/cp/CpAsset.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ private function _editableCategoryGroups(): array
447447
'handle' => $group->handle,
448448
'id' => (int)$group->id,
449449
'name' => Craft::t('site', $group->name),
450-
'uid' => Craft::t('site', $group->uid),
450+
'uid' => $group->uid,
451451
];
452452
}
453453

0 commit comments

Comments
 (0)