Merge pull request #10 from Dreamersoul/master

fix(CurrenciesTableSeeder): added missing currency KWD
This commit is contained in:
Mohit Panjwani
2019-11-21 12:43:51 +05:30
committed by GitHub
2 changed files with 9 additions and 1 deletions

View File

@ -79,6 +79,14 @@ class CurrenciesTableSeeder extends Seeder
'thousand_separator' => ',',
'decimal_separator' => '.'
],
[
'name' => 'Kuwaiti Dinar',
'code' => 'KWD',
'symbol' => 'KWD ',
'precision' => '3',
'thousand_separator' => ',',
'decimal_separator' => '.'
],
[
'name' => 'Canadian Dollar',
'code' => 'CAD',

View File

@ -92,7 +92,7 @@ export default {
this.isCheckingforUpdate = false
if (!response.data.version) {
window.toastr['warning'](this.$t('settings.update_app.latest_message'))
window.toastr['info'](this.$t('settings.update_app.latest_message'))
return
}