Merge pull request #2236 from rahulshukla-webkul/development
Issue #2227
This commit is contained in:
commit
9246311fa8
|
|
@ -139,7 +139,7 @@
|
|||
<accordian :title="'{{ __('admin::app.catalog.categories.filterable-attributes') }}'" :active="true">
|
||||
<div slot="body">
|
||||
|
||||
<?php $selectedaAtributes = old('attributes') ?? [] ?>
|
||||
<?php $selectedaAtributes = old('attributes') ? old('attributes') : ['11'] ?>
|
||||
|
||||
<div class="control-group" :class="[errors.has('attributes[]') ? 'has-error' : '']">
|
||||
<label for="attributes" class="required">{{ __('admin::app.catalog.categories.attributes') }}</label>
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
text-align: left;
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
.table thead th {
|
||||
|
|
@ -69,7 +70,8 @@
|
|||
}
|
||||
|
||||
.sale-summary tr.bold {
|
||||
font-weight: 600;
|
||||
font-family: DejaVu Sans; sans-serif;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.label {
|
||||
|
|
|
|||
Loading…
Reference in New Issue