Skip to content

Commit b60a402

Browse files
Hotfix
1 parent 18cd622 commit b60a402

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

public/css/admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/sass/admin/admin.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
@import 'custom-coreui';
33
@import 'components';
44

5+
//hotfix
6+
.c-wrapper:not(.c-wrapper-fluid) .c-body{
7+
display: block !important;
8+
}
9+
510
label::first-letter, th[scope="col"]::first-letter{
611
text-transform: uppercase;
712
}

resources/views/admin/categories/save.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<label for="url">{{ __('url') }}*</label>
5858
<div class="input-group">
5959
<div class="input-group-prepend">
60-
<span class="input-group-text">{{ url('/') }}/{{app()->getLocale()}}/categories/</span>
60+
<span class="input-group-text">{{ route('index', app()->getLocale()) }}/{{app()->getLocale()}}/categories/</span>
6161
</div>
6262
<input type="text" id="url" name="content[url]" class="form-control @error('content.url') is-invalid @enderror" value="{{ $content->url ?? old('content.url') }}" required>
6363
@error('content.url')

resources/views/admin/files-manager.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div class="row justify-content-center">
77
<div class="col-12">
88
<iframe src="{{ route('admin.unisharp.lfm.show') }}" style="width: 100%; height: 600px; overflow: hidden; border: none;"></iframe>
9-
<a href="{{ route('admin.unisharp.lfm.show') }}" class="btn btn-primary mt-4" target="_blank">{{ __('Open in new card') }}</a>
9+
<a href="{{ route('admin.unisharp.lfm.show') }}" class="btn btn-primary my-4" target="_blank">{{ __('Open in new card') }}</a>
1010
</div>
1111
</div>
1212
@endsection

resources/views/admin/posts/save.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<label for="url">{{ __('url') }}*</label>
5858
<div class="input-group">
5959
<div class="input-group-prepend">
60-
<span class="input-group-text">{{ url('/') }}/{{app()->getLocale()}}/posts/</span>
60+
<span class="input-group-text">{{ route('index', app()->getLocale()) }}/{{app()->getLocale()}}/posts/</span>
6161
</div>
6262
<input type="text" id="url" name="content[url]" class="form-control @error('content.url') is-invalid @enderror" value="{{ $content->url ?? old('content.url') }}" required>
6363
@error('content.url')

0 commit comments

Comments
 (0)