Skip to content

Commit

Permalink
queueview: width fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuth committed Oct 9, 2022
1 parent 00c46c7 commit 02f67c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/QueueView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<a
link
style="color: white; text-decoration: none"
@click="show_finished = true"
@click="show_detail = true"
>
<v-badge
:value="data.finished.length > 0"
Expand All @@ -27,15 +27,15 @@
{{ $t("running") }}
</v-badge>
</a>
<v-dialog v-model="show_finished">
<v-dialog v-model="show_detail" width="80%">
<v-card>
<v-card-title
>{{ $t("finished-tasks") }}
<v-spacer></v-spacer>
<v-btn icon @click="clear_not_viewable">
<v-icon>mdi-delete</v-icon>
</v-btn>
<v-btn icon @click="show_finished = false"
<v-btn icon @click="show_detail = false"
><v-icon>mdi-close</v-icon></v-btn
>
</v-card-title>
Expand Down Expand Up @@ -96,7 +96,7 @@ import api from "../api";
export default {
data() {
return {
show_finished: false,
show_detail: false,
};
},
props: ["data"],
Expand All @@ -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) {
Expand Down

0 comments on commit 02f67c2

Please sign in to comment.