kopia lustrzana https://github.com/wagtail/wagtail
rodzic
3bf4a0693c
commit
cc4675aa5e
|
@ -167,6 +167,7 @@ Changelog
|
||||||
* Fix: Ensure `DocumentChooserBlock` can be deconstructed for migrations (Matt Westcott)
|
* Fix: Ensure `DocumentChooserBlock` can be deconstructed for migrations (Matt Westcott)
|
||||||
* Fix: Resolve frontent console error and unintented console logging issues (Matt Wescott, Paarth Agarwal)
|
* Fix: Resolve frontent console error and unintented console logging issues (Matt Wescott, Paarth Agarwal)
|
||||||
* Fix: Resolve issue with sites that have not yet migrated away from `BaseSetting` when upgrading to Wagtail 4.0 (Stefan Hammer)
|
* Fix: Resolve issue with sites that have not yet migrated away from `BaseSetting` when upgrading to Wagtail 4.0 (Stefan Hammer)
|
||||||
|
* Fix: Use correct classnames for showing/hiding edit button on chooser widget (Matt Wescott)
|
||||||
|
|
||||||
|
|
||||||
3.0.1 (16.06.2022)
|
3.0.1 (16.06.2022)
|
||||||
|
|
|
@ -94,9 +94,9 @@ export class Chooser {
|
||||||
const editUrl = newState[this.editUrlStateKey];
|
const editUrl = newState[this.editUrlStateKey];
|
||||||
if (editUrl) {
|
if (editUrl) {
|
||||||
this.editLink.setAttribute('href', editUrl);
|
this.editLink.setAttribute('href', editUrl);
|
||||||
this.editLink.classList.remove('u-hidden');
|
this.editLink.classList.remove('w-hidden');
|
||||||
} else {
|
} else {
|
||||||
this.editLink.classList.add('u-hidden');
|
this.editLink.classList.add('w-hidden');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -224,6 +224,7 @@ The bulk of these enhancements have been from Paarth Agarwal, who has been doing
|
||||||
* Ensure `DocumentChooserBlock` can be deconstructed for migrations (Matt Westcott)
|
* Ensure `DocumentChooserBlock` can be deconstructed for migrations (Matt Westcott)
|
||||||
* Resolve frontent console error and unintented console logging issues (Matt Wescott, Paarth Agarwal)
|
* Resolve frontent console error and unintented console logging issues (Matt Wescott, Paarth Agarwal)
|
||||||
* Resolve issue with sites that have not yet migrated away from `BaseSetting` when upgrading to Wagtail 4.0 (Stefan Hammer)
|
* Resolve issue with sites that have not yet migrated away from `BaseSetting` when upgrading to Wagtail 4.0 (Stefan Hammer)
|
||||||
|
* Use correct classnames for showing/hiding edit button on chooser widget (Matt Wescott)
|
||||||
|
|
||||||
|
|
||||||
## Upgrade considerations
|
## Upgrade considerations
|
||||||
|
|
Ładowanie…
Reference in New Issue