mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
28 lines
558 B
Vue
28 lines
558 B
Vue
<template>
|
|
<n8n-tooltip class="primary-color" placement="bottom-end" >
|
|
<template #content>
|
|
<div>
|
|
<span v-html="$locale.baseText('executionDetails.readOnly.youreViewingTheLogOf')"></span>
|
|
</div>
|
|
</template>
|
|
<div>
|
|
<font-awesome-icon icon="exclamation-triangle" />
|
|
<span v-text="$locale.baseText('executionDetails.readOnly.readOnly')"></span>
|
|
</div>
|
|
</n8n-tooltip>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
name: "ReadOnly",
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
svg {
|
|
margin-right: 6px;
|
|
}
|
|
</style>
|