Skip to content

Commit

Permalink
Fix the names of the values passed to the parameter DIRECTION when tr…
Browse files Browse the repository at this point in the history
…iggering bisect from the IJ-Perf
  • Loading branch information
annaMarchenkoJetBrains committed Sep 24, 2024
1 parent ae241ed commit bce8e6d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<Select
id="direction"
v-model="direction"
:options="['IMPROVEMENT', 'DEGRADATION']"
:options="['OPTIMIZATION', 'DEGRADATION']"
>
<template #value="{ value }">
<div class="group inline-flex justify-center text-sm font-medium">
Expand Down Expand Up @@ -147,7 +147,7 @@ const metric = ref(data.series[0].metricName ?? "")
const test = ref(data.projectName)
const branch = ref(data.branch)
const isDegradation = data.deltaPrevious?.includes("-") ?? false
const direction = ref(isDegradation ? "DEGRADATION" : "IMPROVEMENT")
const direction = ref(isDegradation ? "DEGRADATION" : "OPTIMIZATION")
const buildType = computedAsync(async () => await getTeamcityBuildType(serverConfigurator.db, serverConfigurator.table, data.buildId), null)
const firstCommit = ref()
const lastCommit = ref()
Expand Down

0 comments on commit bce8e6d

Please sign in to comment.