fix(server): Validation of activate/inacitvate tax rates

This commit is contained in:
Ahmed Bouhuolia
2023-09-20 00:42:34 +02:00
parent 73ceeaee46
commit 453df2ac4e
4 changed files with 8 additions and 4 deletions

View File

@@ -24,6 +24,6 @@ export class TaxRateTransformer extends Transformer {
* @returns {string}
*/
protected nameFormatted = (taxRate): string => {
return `${taxRate.name} (${taxRate.rate}%)`;
return `${taxRate.name} [${taxRate.rate}%]`;
};
}