mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 08:27:08 +00:00
@@ -329,6 +329,18 @@
|
||||
title="View the event log for this sequence">{{value}}</a>
|
||||
</template>
|
||||
|
||||
<template v-slot:item.line="{value}">
|
||||
<b>{{value}}</b>
|
||||
</template>
|
||||
|
||||
<template v-slot:item.fsp_final="{value}">
|
||||
<b v-if="value">{{value}}</b>
|
||||
</template>
|
||||
|
||||
<template v-slot:item.lsp_final="{value}">
|
||||
<b v-if="value">{{value}}</b>
|
||||
</template>
|
||||
|
||||
<template v-slot:item.status="{value, item}">
|
||||
<span :class="{'success--text': value=='final', 'warning--text': value=='raw', 'error--text': value=='ntbp'}">
|
||||
{{ value == "final" ? "Processed" : value == "raw" ? item.raw_files ? "Acquired" : "In acquisition" : value == "ntbp" ? "NTBP" : `Unknown (${status})` }}
|
||||
@@ -368,7 +380,7 @@
|
||||
</template>
|
||||
|
||||
<template v-slot:item.duration_final="{item: {duration_final: value}}">
|
||||
{{
|
||||
<b>{{
|
||||
value
|
||||
?
|
||||
"" +
|
||||
@@ -379,7 +391,7 @@
|
||||
":" + String(value.minutes || 0).padStart(2, "0") +
|
||||
":" + String(value.seconds || 0).padStart(2, "0")
|
||||
: "N/A"
|
||||
}}
|
||||
}}</b>
|
||||
</template>
|
||||
|
||||
<template v-slot:item.ts0="{value}">
|
||||
@@ -395,15 +407,15 @@
|
||||
</template>
|
||||
|
||||
<template v-slot:item.ts0_final="{value}">
|
||||
<span v-if="value">
|
||||
<b v-if="value">
|
||||
{{ value.replace(/(.{10})T(.{8}).{4}Z$/, "$1 $2") }}
|
||||
</span>
|
||||
</b>
|
||||
</template>
|
||||
|
||||
<template v-slot:item.ts1_final="{value}">
|
||||
<span v-if="value">
|
||||
<b v-if="value">
|
||||
{{ value.replace(/(.{10})T(.{8}).{4}Z$/, "$1 $2") }}
|
||||
</span>
|
||||
</b>
|
||||
</template>
|
||||
|
||||
<template v-slot:item.missing_shots="{value}">
|
||||
|
||||
Reference in New Issue
Block a user