19 lines
372 B
Vue
19 lines
372 B
Vue
<script lang="ts" setup>
|
|
import { useI18n } from '@/composables/useI18n';
|
|
const i18n = useI18n();
|
|
|
|
defineProps<{
|
|
nodeName: string;
|
|
errorMessage?: string;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
{{ errorMessage }}<br />
|
|
<a data-action="openNodeDetail" :data-action-parameter-node="nodeName">{{
|
|
i18n.baseText('node.executionError.openNode')
|
|
}}</a>
|
|
</div>
|
|
</template>
|