Make prime data stand out.

Fixes #228.
This commit is contained in:
D. Berge
2022-05-06 18:07:09 +02:00
parent 7e8f00d9f2
commit b6d4236325

View File

@@ -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}">