Skip to content

Commit

Permalink
feat(ui): add restart button on execution logs page (#4672)
Browse files Browse the repository at this point in the history
  • Loading branch information
MilosPaunovic authored Aug 15, 2024
1 parent 9ad860c commit 6acba8d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ui/src/components/executions/Logs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
</el-form-item>
<el-form-item>
<el-button-group>
<restart :execution="execution" class="ms-0" @follow="forwardEvent('follow', $event)" />
<el-button @click="downloadContent()">
<kicon :tooltip="$t('download logs')">
<download />
Expand Down Expand Up @@ -79,6 +80,7 @@
import State from "../../utils/state";
import Utils from "../../utils/utils";
import LogLine from "../logs/LogLine.vue";
import Restart from "./Restart.vue";
export default {
components: {
Expand All @@ -88,7 +90,8 @@
Kicon,
Download,
Magnify,
Collapse
Collapse,
Restart
},
data() {
return {
Expand Down

0 comments on commit 6acba8d

Please sign in to comment.