Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Space blade echo's #5645

Merged
merged 1 commit into from
Mar 25, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/views/assets/containers/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
:initial-values="{{ json_encode($values) }}"
:meta="{{ json_encode($meta) }}"
url="{{ cp_route('asset-containers.update', $container->handle()) }}"
listing-url="{{ cp_route('assets.browse.show', $container->handle())}}"
listing-url="{{ cp_route('assets.browse.show', $container->handle()) }}"
action="patch"
></asset-container-edit-form>

Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
</div>
@if (! $oauth)
<div class="w-full text-center mt-2">
<a href="{{ cp_route('password.request')}}" class="forgot-password-link text-sm opacity-75 hover:opacity-100">
<a href="{{ cp_route('password.request') }}" class="forgot-password-link text-sm opacity-75 hover:opacity-100">
{{ __('Forgot password?') }}
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/passwords/email.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</div>

<div class="w-full text-center mt-2">
<a href="{{ cp_route('login')}}" class="forgot-password-link text-sm opacity-75 hover:opacity-100">
<a href="{{ cp_route('login') }}" class="forgot-password-link text-sm opacity-75 hover:opacity-100">
{{ __('I remember my password') }}
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/collections/blueprints/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<div class="flex justify-center mt-4">
<button tabindex="4" class="btn-primary mx-auto btn-lg">
{{ __('Create Blueprint')}}
{{ __('Create Blueprint') }}
</button>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/forms/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
:initial-values="{{ json_encode($values) }}"
:meta="{{ json_encode($meta) }}"
url="{{ cp_route('forms.update', $form->handle()) }}"
listing-url="{{ cp_route('forms.index')}}"
listing-url="{{ cp_route('forms.index') }}"
></collection-edit-form>

@endsection
6 changes: 3 additions & 3 deletions resources/views/partials/global-header.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,20 +58,20 @@

@if (config('statamic.cp.link_to_docs'))
<dropdown-item external-link="https://statamic.dev" class="flex items-center">
<span>{{__('Documentation')}}</span>
<span>{{__('Documentation') }}</span>
<i class="w-3 block ml-1">@cp_svg('external-link')</i>
</dropdown-item>
@endif

@if (config('statamic.cp.support_url'))
<dropdown-item external-link="{{ config('statamic.cp.support_url') }}" class="flex items-center">
<span>{{__('Support')}}</span>
<span>{{__('Support') }}</span>
<i class="w-3 block ml-1">@cp_svg('external-link')</i>
</dropdown-item>
@endif

<dropdown-item @click="$events.$emit('keyboard-shortcuts.open')" class="flex items-center">
<span>{{__('Keyboard Shortcuts')}}</span>
<span>{{__('Keyboard Shortcuts') }}</span>
</dropdown-item>
</dropdown-list>

Expand Down
2 changes: 1 addition & 1 deletion resources/views/taxonomies/blueprints/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<div class="flex justify-center mt-4">
<button tabindex="4" class="btn-primary mx-auto btn-lg">
{{ __('Create Blueprint')}}
{{ __('Create Blueprint') }}
</button>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions resources/views/updater/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@if ($count = $statamic->availableUpdatesCount())
<td class="text-right"><span class="badge-sm bg-green btn-sm">{{ trans_choice('1 update|:count updates', $count) }}</span></td>
@else
<td class="text-right">{{ __('Up to date')}}</td>
<td class="text-right">{{ __('Up to date') }}</td>
@endif
</tr>
</table>
Expand All @@ -32,7 +32,7 @@
@if ($count = $addon->changelog()->availableUpdatesCount())
<td class="text-right"><span class="badge-sm bg-green btn-sm">{{ trans_choice('1 update|:count updates', $count) }}</span></td>
@else
<td class="text-right">{{ __('Up to date')}}</td>
<td class="text-right">{{ __('Up to date') }}</td>
@endif
</tr>
@endforeach
Expand Down