mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
41 lines
1 KiB
Vue
41 lines
1 KiB
Vue
<template>
|
|
<n8n-info-tip type="tooltip" theme="info-light" tooltipPlacement="right" v-if="runMetadata">
|
|
<div>
|
|
<n8n-text :bold="true" size="small">{{
|
|
$locale.baseText('runData.startTime') + ':'
|
|
}}</n8n-text>
|
|
{{ runMetadata.startTime }}<br />
|
|
<n8n-text :bold="true" size="small">{{
|
|
$locale.baseText('runData.executionTime') + ':'
|
|
}}</n8n-text>
|
|
{{ runMetadata.executionTime }} {{ $locale.baseText('runData.ms') }}
|
|
</div>
|
|
</n8n-info-tip>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import type { ITaskData } from 'n8n-workflow';
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
taskData: {}, // ITaskData
|
|
},
|
|
|
|
computed: {
|
|
runTaskData(): ITaskData {
|
|
return this.taskData as ITaskData;
|
|
},
|
|
runMetadata(): { executionTime: number; startTime: string } | null {
|
|
if (!this.runTaskData) {
|
|
return null;
|
|
}
|
|
return {
|
|
executionTime: this.runTaskData.executionTime,
|
|
startTime: new Date(this.runTaskData.startTime).toLocaleString(),
|
|
};
|
|
},
|
|
},
|
|
});
|
|
</script>
|