Skip to content

Commit

Permalink
Merge branch 'master' of github.com:rapidez/statamic
Browse files Browse the repository at this point in the history
  • Loading branch information
royduin committed Jul 4, 2023
2 parents 589708e + f91b69e commit b45f4dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog

[Unreleased changes](https://github.com/rapidez/statamic/compare/2.1.0...master)
[Unreleased changes](https://github.com/rapidez/statamic/compare/2.1.1...master)
## [2.1.1](https://github.com/rapidez/statamic/releases/tag/2.1.1) - 2023-07-04

### Fixed

- Enabled localizable and propagate everywhere by default (871912d)
- Use url helpers (#37)

## [2.1.0](https://github.com/rapidez/statamic/releases/tag/2.1.0) - 2023-06-29

### Changed
Expand Down
2 changes: 1 addition & 1 deletion resources/views/breadcrumbs.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<x-rapidez::breadcrumbs>
@foreach(Statamic::tag('nav:breadcrumbs')->param('include_home', false) as $item)
<x-rapidez::breadcrumb :active="$item->is_current" :url="$item->url" :position="$loop->iteration + 1">
<x-rapidez::breadcrumb :active="$item->is_current" :url="url($item->url)" :position="$loop->iteration + 1">
{{ $item->title }}
</x-rapidez::breadcrumb>
@endforeach
Expand Down

0 comments on commit b45f4dd

Please sign in to comment.