fix: ticketEditMana i18n label
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Javier Segarra 2025-05-06 18:44:53 +02:00
parent 112dcca245
commit 2bdc05951a
2 changed files with 3 additions and 2 deletions

View File

@ -89,7 +89,7 @@ defineExpose({ save });
</div>
<div v-if="newPrice" class="column items-center q-mt-lg">
<span class="text-primary">{{ t('New price') }}</span>
<span class="text-primary">{{ t('basicData.newPrice') }}</span>
<span class="text-subtitle1">{{ toCurrency(newPrice) }}</span>
</div>
</div>
@ -135,3 +135,4 @@ defineExpose({ save });
min-width: 230px;
}
</style>
<

View File

@ -314,7 +314,7 @@ const changePrice = async (sale) => {
const updatePrice = async (sale, newPrice) => {
try {
await axios.post(`Sales/${sale.id}/updatePrice`, {
newPrice: newPrice,
newPrice,
componentId: componentId.value,
});
notify('globals.dataSaved', 'positive');