fix: inventory adjustment publish messages.

This commit is contained in:
a.bouhuolia
2021-08-07 08:32:52 +02:00
parent a429a78e02
commit 994da28ccd
5 changed files with 12 additions and 11 deletions

View File

@@ -38,7 +38,7 @@ function InventoryAdjustmentPublishAlert({
publishInventoryAdjustmentMutate(inventoryId)
.then(() => {
AppToaster.show({
message: intl.get('the_inventory_adjustment_has_been_published'),
message: intl.get('inventory_adjustment.publish.success_message'),
intent: Intent.SUCCESS,
});
closeAlert(name);
@@ -59,7 +59,7 @@ function InventoryAdjustmentPublishAlert({
loading={isLoading}
>
<p>
<T id={'are_sure_to_publish_this_inventory_adjustment'} />
<T id={'inventory_adjustment.publish.alert_message'} />
</p>
</Alert>
);