Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Renni771 committed Jan 18, 2024
1 parent 8d2ad5c commit dc3adfd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/src/components/History/CurrentHistory/HistoryPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@ async function onUndelete(item: HistoryItem) {
isLoading.value = true;
try {
await updateContentFields(item, { deleted: false });
await updateContentFields(item, { deleted: false });
} finally {
isLoading.value = false;
isLoading.value = false;
}
}
Expand All @@ -270,9 +270,9 @@ async function onUnhide(item: HistoryItem) {
isLoading.value = true;
try {
await updateContentFields(item, { visible: true });
await updateContentFields(item, { visible: true });
} finally {
isLoading.value = false;
isLoading.value = false;
}
}
Expand Down Expand Up @@ -334,7 +334,7 @@ async function onDrop(evt: any) {
}
function updateFilterValue(newFilterText: string, newValue: any) {
const currentFilterText = filterText.value
const currentFilterText = filterText.value;
filterText.value = filterClass.setFilterValue(currentFilterText, newFilterText, newValue);
}
Expand Down

0 comments on commit dc3adfd

Please sign in to comment.