This commit is contained in:
steffenrapp 2024-08-15 19:13:03 +00:00
parent bff4984998
commit 028a4ce325

View File

@ -7,7 +7,7 @@ const password = ref('');
const header = computed(() => `Authorization: Basic ${textToBase64(`${username.value}:${password.value}`)}`);
const { t } = useI18n();
const { copy } = useCopy({ source: header, text: 't('tools.basic-auth-generator.copied')'' });
const { copy } = useCopy({ source: header, text: t('tools.basic-auth-generator.copied') });
</script>
<template>