Merge pull request #2059 from jitendra-webkul/1.0

Removed ')' in page edit blade
This commit is contained in:
Jitendra Singh 2020-01-15 18:42:24 +05:30 committed by GitHub
commit d80a3c7a5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,7 @@
</div>
<div class="page-action">
@if ($page->translate($locale)))
@if ($page->translate($locale))
<a href="{{ route('shop.cms.page', $page->translate($locale)['url_key']) }}" class="btn btn-lg btn-primary" target="_blank">
{{ __('admin::app.cms.pages.preview') }}
</a>

View File

@ -98,6 +98,7 @@
<div v-if="option.type == 'multiselect'">
<select class="control" :name="'bundle_options[' + option.id + '][]'" v-model="selected_product" v-validate="option.is_required ? 'required' : ''" :data-vv-as="'&quot;' + option.label + '&quot;'" multiple>
<option value="0">{{ __('shop::app.products.none') }}</option>
<option v-for="(product, index2) in option.products" :value="product.id">
@{{ product.name + ' + ' + product.price.final_price.formated_price }}
</option>