Don't invoke stitching from the front-end

Stitching is now done automatically in a sub process by the
server. This is much cleaner - and all we need to do is poll for
file updates.

I've also styled the log display slightly better.
This commit is contained in:
Richard Bowman 2024-01-11 01:51:17 +00:00
parent 9a2b830ff5
commit 3de7aa2fb2
2 changed files with 12 additions and 44 deletions

View file

@ -1,5 +1,5 @@
<template>
<div ref="logContainer" class="log-container">
<div ref="logContainer" class="log-container uk-margin-left uk-margin-right uk-margin">
<div v-if="log">
<div v-for="(item, index) in log" :key="`log_entry_${index}`">
{{ item.message }}
@ -57,5 +57,8 @@ export default {
position: relative;
overflow-y: auto;
overflow-x: auto;
background-color: white;
padding: 0.5em;
border: 1px solid black;
}
</style>