Fix translation and cs-fixes

This commit is contained in:
Julie Lenaerts 2025-03-05 19:43:16 +01:00
parent 09b7558e92
commit 4302506471
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
<span v-else-if="props.entity.kind === 'company'">{{
trans(THIRDPARTY_A_CONTACT)
}}</span>
<span v-else>{{ $t("thirdparty.contact") }}</span>
<span v-else>{{ trans(THIRDPARTY_CONTACT) }}</span>
</template>
</span>
@ -56,6 +56,7 @@ import {
THIRDPARTY_CONTACT_OF,
PERSON,
THIRDPARTY,
THIRDPARTY_CONTACT,
} from "translator";
const props = defineProps({

View File

@ -12,7 +12,6 @@ declare(strict_types=1);
namespace Chill\ThirdPartyBundle\Service;
use Chill\ThirdPartyBundle\Entity\ThirdParty;
use Doctrine\DBAL\Exception;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\Mapping\ClassMetadata;