Poprawki daty

This commit is contained in:
2022-11-02 14:44:06 +01:00
parent 96020618a5
commit 28d4fc1587
2 changed files with 7 additions and 9 deletions
+4 -4
View File
@@ -25,7 +25,7 @@ ms-icon-144x144.png,1658609937000,aede59be6881a13db2df2635cc1e7b258a39f5ab107713
ms-icon-150x150.png,1658609937021,e2c169c428949765d1e695b05a48f4b982ae2fa3068e426ed41447eba0e19234 ms-icon-150x150.png,1658609937021,e2c169c428949765d1e695b05a48f4b982ae2fa3068e426ed41447eba0e19234
ms-icon-310x310.png,1658609937042,9680db857d251ecdb422aa8c1cc186ffe67e74c2b6655067e7d7fc2e324476c3 ms-icon-310x310.png,1658609937042,9680db857d251ecdb422aa8c1cc186ffe67e74c2b6655067e7d7fc2e324476c3
ms-icon-70x70.png,1658609936980,e61ef4f24726f3f017de2ece28c2701413764d02310881d0d99642d18582a14a ms-icon-70x70.png,1658609936980,e61ef4f24726f3f017de2ece28c2701413764d02310881d0d99642d18582a14a
index.html,1666991226960,4f759f76864849af048df1a7340e7ebb4225bb6ddd757f9fd8f5216580dd0d6b index.html,1667315257253,f0640bfb34291af2beb6c313808f0eaab211006f14d23127f154c1675e0977fb
assets/icon-save.5a12487e.svg,1666991226960,5c75b0d4e35cdaf019c7292f7fd98c2e60466ae6f8b30d49b96cf2380c08299c assets/icon-save.5a12487e.svg,1667315257253,5c75b0d4e35cdaf019c7292f7fd98c2e60466ae6f8b30d49b96cf2380c08299c
assets/index.7935f9e1.css,1666991226965,35bb45534e37595332ac33635e47ab0b692387d74e51496c66ad1e40b2df5097 assets/index.7079f66b.css,1667315257254,8c36fde912d7c1c4c540cf690cb8d0a0fd83ec92eca6c26e6ebd09f28e111e60
assets/index.16f6ce84.js,1666991226960,0b424f580331c2866a49964e8aef74b7564ebd323f995d35c0d34cb2d04edad0 assets/index.044c36ce.js,1667315257253,60986a36dc077c84263610718c9c6c2182dc81222184cc602221629e0dbdfa4f
+3 -5
View File
@@ -27,7 +27,7 @@ export const useStore = defineStore('store', {
header: { header: {
orderNo: '1', orderNo: '1',
trainNo: '', trainNo: '',
date: new Date().toLocaleDateString('pl-PL', { day: '2-digit', month: 'long' }), date: new Date().toLocaleDateString('pl-PL', { day: 'numeric', month: 'long' }),
}, },
orderList: [ orderList: [
@@ -79,7 +79,7 @@ export const useStore = defineStore('store', {
header: { header: {
orderNo: '1', orderNo: '1',
trainNo: '', trainNo: '',
date: new Date().toLocaleDateString('pl-PL', { day: '2-digit', month: 'long' }), date: new Date().toLocaleDateString('pl-PL', { day: 'numeric', month: 'long' }),
}, },
rows: [ rows: [
@@ -141,7 +141,7 @@ export const useStore = defineStore('store', {
orderNo: '1', orderNo: '1',
trainNo: '', trainNo: '',
for: 'pociągu', for: 'pociągu',
date: new Date().toLocaleDateString('pl-PL', { day: '2-digit', month: 'long' }), date: new Date().toLocaleDateString('pl-PL', { day: 'numeric', month: 'long' }),
}, },
rows: [ rows: [
@@ -179,8 +179,6 @@ export const useStore = defineStore('store', {
}, },
], ],
} as IOrderS, } as IOrderS,
}; };
}, },
}); });