mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
Merge pull request #10 from Dreamersoul/master
fix(CurrenciesTableSeeder): added missing currency KWD
This commit is contained in:
@ -79,6 +79,14 @@ class CurrenciesTableSeeder extends Seeder
|
|||||||
'thousand_separator' => ',',
|
'thousand_separator' => ',',
|
||||||
'decimal_separator' => '.'
|
'decimal_separator' => '.'
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
'name' => 'Kuwaiti Dinar',
|
||||||
|
'code' => 'KWD',
|
||||||
|
'symbol' => 'KWD ',
|
||||||
|
'precision' => '3',
|
||||||
|
'thousand_separator' => ',',
|
||||||
|
'decimal_separator' => '.'
|
||||||
|
],
|
||||||
[
|
[
|
||||||
'name' => 'Canadian Dollar',
|
'name' => 'Canadian Dollar',
|
||||||
'code' => 'CAD',
|
'code' => 'CAD',
|
||||||
|
|||||||
@ -92,7 +92,7 @@ export default {
|
|||||||
this.isCheckingforUpdate = false
|
this.isCheckingforUpdate = false
|
||||||
|
|
||||||
if (!response.data.version) {
|
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
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user