Render strings for ReadOnly

This commit is contained in:
Iván Ovejero 2021-12-02 13:37:08 +01:00
parent 5a3c75b816
commit f22cd1494c
2 changed files with 11 additions and 15 deletions

View file

@ -36,7 +36,15 @@
</span> </span>
workflow workflow
</span> </span>
<ReadOnly class="read-only" /> <n8n-tooltip class="read-only primary-color" placement="bottom-end" >
<div slot="content">
{{ $baseText('readOnly.youreViewingTheLogOf') }}
</div>
<span>
<font-awesome-icon icon="exclamation-triangle" />
{{ $baseText('readOnly.readOnly') }}
</span>
</n8n-tooltip>
</div> </div>
</template> </template>
@ -48,13 +56,12 @@ import { IExecutionResponse } from "../../../Interface";
import { titleChange } from "@/components/mixins/titleChange"; import { titleChange } from "@/components/mixins/titleChange";
import WorkflowNameShort from "@/components/WorkflowNameShort.vue"; import WorkflowNameShort from "@/components/WorkflowNameShort.vue";
import ReadOnly from "@/components/MainHeader/ExecutionDetails/ReadOnly.vue"; import { renderText } from "@/components/mixins/renderText";
export default mixins(titleChange).extend({ export default mixins(titleChange, renderText).extend({
name: "ExecutionDetails", name: "ExecutionDetails",
components: { components: {
WorkflowNameShort, WorkflowNameShort,
ReadOnly,
}, },
computed: { computed: {
executionId(): string | undefined { executionId(): string | undefined {

View file

@ -1,11 +0,0 @@
<template>
<n8n-tooltip class="primary-color" placement="bottom-end" >
<div slot="content">
{{ $baseText('readOnly.youreViewingTheLogOf') }}
</div>
<span>
<font-awesome-icon icon="exclamation-triangle" />
{{ $baseText('readOnly.readOnly') }}
</span>
</n8n-tooltip>
</template>