Skip to content

Commit e20570e

Browse files
committed
Fix
1 parent 0a86623 commit e20570e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/views/bootstrap-4/components/table/table.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="{{$this->responsive ? 'table-responsive' : ''}}">
1+
<div class="{{ $this->responsive ? 'table-responsive' : '' }}">
22
<table {{ $attributes->except('wire:sortable') }} class="table table-striped">
33
<thead>
44
<tr>

resources/views/bootstrap-5/components/table/table.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="{{$this->responsive ? 'table-responsive' : ''}}">
1+
<div class="{{ $this->responsive ? 'table-responsive' : '' }}">
22
<table {{ $attributes->except('wire:sortable') }} class="table table-striped">
33
<thead>
44
<tr>

0 commit comments

Comments
 (0)