Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed the standalone Back to Top block source in favour of variation-based implementation.

### Fixed
- Fixed the Linkable Blocks stylesheet 404ing on every page load sitewide: `inc/linkable-blocks.php` enqueued `build/css/style-linkable-blocks.css`, a filename that doesn't exist (likely copy-pasted from another block's enqueue code, which does use a `style-` prefix). The actual compiled file is `build/css/linkable-blocks.css`. Corrected the enqueued path to match.
- Fixed editor runtime errors from invalid React component handling in Back to Top editor integration.
- Fixed strict mode error in Back to Top animation loop by replacing `arguments.callee` with a named animation step.
- Fixed Taxonomy Filter full-page refresh behaviour by enabling client-side Query Loop navigation when the block is present.
Expand Down
2 changes: 1 addition & 1 deletion inc/linkable-blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function ls_plugin_register_linkable_block_styles() {

wp_register_style(
'ls-plugin-linkable-blocks',
LS_PLUGIN_PLUGIN_URL . 'build/css/style-linkable-blocks.css',
LS_PLUGIN_PLUGIN_URL . 'build/css/linkable-blocks.css',
$asset['dependencies'] ?? array(),
$asset['version'] ?? LS_PLUGIN_VERSION
);
Expand Down