mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
20 lines
338 B
Vue
20 lines
338 B
Vue
|
<script lang="ts" setup>
|
||
|
import { useI18n } from '@/composables/useI18n';
|
||
|
const i18n = useI18n();
|
||
|
|
||
|
defineProps<{
|
||
|
message: string;
|
||
|
}>();
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
{{
|
||
|
i18n.baseText(
|
||
|
'workflowActivator.showMessage.displayActivationError.message.errorDataNotUndefined',
|
||
|
)
|
||
|
}}
|
||
|
<br /><i>{{ message }}</i>
|
||
|
</div>
|
||
|
</template>
|