diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ae0b2c19..078344975 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. The format on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Each changelog entry gets prefixed with the category of the item (Added, Changed, Depreciated, Removed, Fixed, Security). +## [2026.03] +- Added: FacetWP Archive blocks & support. + ## [2026.02] - Updated: Renamed "Moose" to "ModernPress" across the project (excluding Lando configs and deployment pipelines). - Updated: Expected PHP version to v8.4, Node version to v24 LTS diff --git a/dev/templates/block/edit.js.mustache b/dev/templates/block/edit.js.mustache index 54b32d69f..77641249f 100644 --- a/dev/templates/block/edit.js.mustache +++ b/dev/templates/block/edit.js.mustache @@ -2,7 +2,8 @@ import { __ } from '@wordpress/i18n'; import { useBlockProps, InspectorControls } from '@wordpress/block-editor'; import { PanelBody, TextControl } from '@wordpress/components'; {{#isDynamicVariant}} -import ServerSideRender from '@wordpress/server-side-render'; +import { ServerSideRender } from '@wordpress/server-side-render'; +import metadata from './block.json'; {{/isDynamicVariant}} import './editor.pcss'; @@ -16,7 +17,7 @@ export default function Edit( { attributes, setAttributes, isSelected } ) {