diff --git a/src/components/QueueView.vue b/src/components/QueueView.vue index 91ac250..dce92ad 100644 --- a/src/components/QueueView.vue +++ b/src/components/QueueView.vue @@ -3,7 +3,7 @@ - + {{ $t("finished-tasks") }} @@ -35,7 +35,7 @@ mdi-delete - mdi-close @@ -96,7 +96,7 @@ import api from "../api"; export default { data() { return { - show_finished: false, + show_detail: false, }; }, props: ["data"], @@ -122,7 +122,7 @@ export default { view_result(task) { var id = encodeURIComponent(task.key); this.$router.push("/results/" + id).catch(() => {}); - this.show_finished = false; + this.show_detail = false; }, downloadable(task) { switch (task.result_type) {