Merge pull request #5970 from mustafa60x/chore/remove-unused-format-functions

docs(BasicFilterDoc.vue) Remove unused format functions
pull/5976/head
Tuğçe Küçükoğlu 2024-06-27 10:56:43 +03:00 committed by GitHub
commit c51ddfa4a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 30 deletions

View File

@ -313,16 +313,6 @@ export default {
return d;
});
},
formatDate(value) {
return value.toLocaleDateString('en-US', {
day: '2-digit',
month: '2-digit',
year: 'numeric'
});
},
formatCurrency(value) {
return value.toLocaleString('en-US', { style: 'currency', currency: 'USD' });
},
getSeverity(status) {
switch (status) {
case 'unqualified':
@ -466,16 +456,6 @@ const getCustomers = (data) => {
return d;
});
};
const formatDate = (value) => {
return value.toLocaleDateString('en-US', {
day: '2-digit',
month: '2-digit',
year: 'numeric'
});
};
const formatCurrency = (value) => {
return value.toLocaleString('en-US', { style: 'currency', currency: 'USD' });
};
const getSeverity = (status) => {
switch (status) {
case 'unqualified':
@ -534,16 +514,6 @@ const getSeverity = (status) => {
return d;
});
},
formatDate(value) {
return value.toLocaleDateString('en-US', {
day: '2-digit',
month: '2-digit',
year: 'numeric'
});
},
formatCurrency(value) {
return value.toLocaleString('en-US', { style: 'currency', currency: 'USD' });
},
getSeverity(status) {
switch (status) {
case 'unqualified':