- fixed filter for calls table;

- implemented call table async on all pages;
- added applications table async;
This commit is contained in:
Vitalii Kiiko
2025-03-05 17:06:00 +01:00
parent ed91588ef5
commit 00b4ad8569
7 changed files with 316 additions and 63 deletions

View File

@@ -0,0 +1,9 @@
const getFormattedDateString = (value) => {
return value.toLocaleDateString('it-IT', {
day: '2-digit',
month: '2-digit',
year: 'numeric'
});
};
export default getFormattedDateString;