Skip to content

Commit

Permalink
[4.x] Fix arrow direction in fav creator for RTL (#9897)
Browse files Browse the repository at this point in the history
  • Loading branch information
peimn authored Apr 15, 2024
1 parent b929d3b commit 7aee556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/FavoriteCreator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default {
data() {
return {
name: document.title.replace(' ‹ Statamic', ''),
name: document.title.replace(` ${this.$config.get('direction', 'rtl') === 'ltr' ? '' : ''} Statamic`, ''),
currentUrl: this.$config.get('urlPath')
}
},
Expand Down

0 comments on commit 7aee556

Please sign in to comment.