Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
opengs committed Jan 22, 2024
1 parent e08cc41 commit f8d4876
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/activeness/ActivenessPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@
row-key="id"
hide-bottom
:pagination="{ rowsPerPage: 1000 }"
style="width: 100%;"
style="width: 100%"
:wrap-cells="true"
dense
>
<template v-slot:body-cell-actions="props">
<q-td :props="props" style="overflow-wrap: break-word;">
<q-td :props="props" style="overflow-wrap: break-word">
<q-btn
round
icon="done"
Expand Down Expand Up @@ -257,7 +257,7 @@ async function makeTaskDone(task: Task) {
type: "negative",
timeout: 5000,
});
await updateLoginStatus(); // in casae of log out
await logout();
return;
}
await loadTasks();
Expand All @@ -273,7 +273,7 @@ async function ignoreTask(task: Task) {
type: "negative",
timeout: 5000,
});
await updateLoginStatus(); // in casae of log out
await logout();
return;
}
await loadTasks();
Expand Down

0 comments on commit f8d4876

Please sign in to comment.