Merge pull request #1440 from prashant-webkul/development
Fixed a translation typo in create cart rule form
This commit is contained in:
commit
3cd49daa5c
|
|
@ -85,6 +85,8 @@ class BagistoInstall extends Command
|
|||
|
||||
$this->changeEnvironmentVariable('DB_DATABASE', $DB_DATABASE);
|
||||
|
||||
$DB_USERNAME = null;
|
||||
|
||||
while(! isset($DB_USERNAME)) {
|
||||
$DB_USERNAME = $this->ask('Enter database username?');
|
||||
$this->comment($DB_USERNAME ?? 'root');
|
||||
|
|
|
|||
|
|
@ -208,7 +208,7 @@
|
|||
|
||||
<div v-if='conditions_list[index].attribute == "shipping_country"'>
|
||||
<select class="control" v-model="conditions_list[index].value">
|
||||
<option disabled="disabled">{{ __('admin::app.select-option']) }}</option>
|
||||
<option disabled="disabled">{{ __('admin::app.select-option') }}</option>
|
||||
<option v-for="(country, index) in country_and_states.countries" :value="country.code">@{{ country.name }}</option>
|
||||
</select>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue