Skip to content

Commit

Permalink
add runRelease in composable
Browse files Browse the repository at this point in the history
  • Loading branch information
yagamuu authored Feb 13, 2024
1 parent 984ef26 commit 25eb4a9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/composable/runData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ export function useRunData() {

const runSystem = computed(() => runDataActiveRun?.data?.system ?? '');

const runRelease = computed(() => runDataActiveRun?.data?.release ?? '');

const estimate = computed(() => {
const estimateS = runDataActiveRun?.data?.estimateS ?? 0;
return util.formatSeconds(estimateS);
Expand All @@ -80,6 +82,7 @@ export function useRunData() {
runTitle,
runCategory,
runSystem,
runRelease,
estimate,
}
}
}

0 comments on commit 25eb4a9

Please sign in to comment.