Skip to content

Commit

Permalink
Merge pull request #319 from chosten/fix-double-encoding
Browse files Browse the repository at this point in the history
Fix double HTML encoding of grid-section props
  • Loading branch information
jeffgreco13 authored Jan 17, 2024
2 parents ab5e6b3 + 28b7398 commit 6f622db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/views/livewire/personal-info.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<x-filament-breezy::grid-section md=2 title="{{ __('filament-breezy::default.profile.personal_info.heading') }}" description="{{ __('filament-breezy::default.profile.personal_info.subheading') }}">
<x-filament-breezy::grid-section md=2 :title="__('filament-breezy::default.profile.personal_info.heading')" :description="__('filament-breezy::default.profile.personal_info.subheading')">
<x-filament::card>
<form wire:submit.prevent="submit" class="space-y-6">

Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/sanctum-tokens.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<x-filament-breezy::grid-section md=2 title="{{ __('filament-breezy::default.profile.sanctum.title') }}" description="{{ __('filament-breezy::default.profile.sanctum.description') }}">
<x-filament-breezy::grid-section md=2 :title="__('filament-breezy::default.profile.sanctum.title')" :description="__('filament-breezy::default.profile.sanctum.description')">
@if($plainTextToken)
<div class="space-y-2 bg-warning-500">
<p class="text-sm">{{ __('filament-breezy::default.profile.sanctum.create.message') }}</p>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<x-filament-breezy::grid-section md=2 title="{{ __('filament-breezy::default.profile.2fa.title') }}" description="{{ __('filament-breezy::default.profile.2fa.description') }}">
<x-filament-breezy::grid-section md=2 :title="__('filament-breezy::default.profile.2fa.title')" :description="__('filament-breezy::default.profile.2fa.description')">

<x-filament::card>

Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/update-password.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<x-filament-breezy::grid-section md=2 title="{{ __('filament-breezy::default.profile.password.heading') }}" description="{{ __('filament-breezy::default.profile.password.subheading') }}">
<x-filament-breezy::grid-section md=2 :title="__('filament-breezy::default.profile.password.heading')" :description="__('filament-breezy::default.profile.password.subheading')">
<x-filament::card>
<form wire:submit.prevent="submit" class="space-y-6">

Expand Down

0 comments on commit 6f622db

Please sign in to comment.