Skip to content

Commit

Permalink
Format source
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed Feb 12, 2024
1 parent 99b4140 commit bea3956
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/views/db/RunsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
<v-alert v-if="error" variant="tonal" type="error">
{{ error }}
</v-alert>
<refresh-button :disabled="loading" @refresh="refresh">
</refresh-button>
<refresh-button :disabled="loading" @refresh="refresh"> </refresh-button>
</template>
<template v-slot:item.runNo="{ item }">
<span class="font-weight-bold primary--text">
Expand Down Expand Up @@ -53,10 +52,7 @@ import RefreshButton from "./RefreshButton.vue";
const queryResponse = useRunsQuery();
const unpacked = useUnpack(() => queryResponse.data?.value?.history.runs);
const { override, fetching, error, nodes } = useOverride(
queryResponse,
unpacked
);
const { override, fetching, error, nodes } = useOverride(queryResponse, unpacked);
const { refresh, refreshing } = useRefresh(queryResponse);
const loading = refThrottled(
Expand Down

0 comments on commit bea3956

Please sign in to comment.