Linter fixes
This commit is contained in:
parent
29177d7214
commit
81540ebc45
3 changed files with 7 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="log-container" ref="logContainer">
|
||||
<div ref="logContainer" class="log-container">
|
||||
<div v-if="log">
|
||||
<div v-for="(item, index) in log" :key="`log_entry_${index}`">
|
||||
{{ item.message }}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,10 @@
|
|||
class=""
|
||||
uk-modal="bg-close: false; esc-close: false; stack: true;"
|
||||
>
|
||||
<div class="uk-modal-dialog uk-modal-body uk-margin-auto-vertical" id="status-modal">
|
||||
<div
|
||||
id="status-modal"
|
||||
class="uk-modal-dialog uk-modal-body uk-margin-auto-vertical"
|
||||
>
|
||||
<h2>{{ submitLabel }}</h2>
|
||||
<action-log-display :log="log" :task-status="taskStatus" />
|
||||
<div id="progress-and-cancel-row">
|
||||
|
|
@ -339,6 +342,6 @@ export default {
|
|||
}
|
||||
|
||||
#status-modal .log-container {
|
||||
height:10em;
|
||||
height: 10em;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue