Skip to content

Commit 39cbaf0

Browse files
committed
Update for Craft 4 / Fix index columns
1 parent 7d6c6d9 commit 39cbaf0

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.0 - 2022-10-31 🎃
2+
### Changed
3+
- Update for Craft 4 via @davidwebca
4+
15
## 1.0.9 - 2021-09-07
26
### Fixed
37
- Fix compatibility issue with Gatsby Helper (Fixes #20)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ether/tags",
33
"description": "A tag manager for Craft 3",
44
"type": "craft-plugin",
5-
"version": "1.0.9",
5+
"version": "2.0.0",
66
"keywords": [
77
"craft",
88
"cms",

src/elements/Tag.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ class Tag extends \craft\elements\Tag
3030
// =========================================================================
3131

3232
/** @var Tag|null */
33-
public $replaceWith;
34-
35-
public $usage;
33+
public ?Tag $replaceWith;
34+
public ?int $usage;
3635

3736
// Methods
3837
// =========================================================================
@@ -154,7 +153,6 @@ protected static function defineSources (string $context = null): array
154153
protected static function defineTableAttributes (): array
155154
{
156155
$attrs = [
157-
'title' => ['label' => Craft::t('app', 'Title')],
158156
'group' => ['label' => Craft::t('app', 'Group')],
159157
];
160158

0 commit comments

Comments
 (0)