Skip to content

Commit

Permalink
fix: update header option display (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-chahbouni-decathlon authored Oct 11, 2021
1 parent bd8d37c commit 16bfac2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/candidate/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: ara
version: 9.4.0-rc.1
version: 9.4.0-rc.2
home: https://github.com/Decathlon/ara
description: |
ARA helps you to fight against regressions by letting it preanalyze your non-regression tests runs,
Expand Down
4 changes: 2 additions & 2 deletions code/web-ui/src/components/top-menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<a href="https://github.com/decathlon/ara/blob/master/doc/user/main/UserDocumentation.adoc"
rel="noopener" target="_blank"><Icon type="md-help-circle" size="24" style="padding: 0;"/></a>
</Tooltip><!-- No space between items -->
<Dropdown trigger="click" placement="bottom-start">
<Dropdown trigger="click" placement="bottom-end">
<a><Icon type="md-settings" size="24"/></a>
<DropdownMenu slot="list">
<div class="parameters-box">
Expand Down Expand Up @@ -111,7 +111,7 @@
</div>
<div class="parameter-inputs" v-if="duration.applied">
<InputNumber class="parameter-inputs-input" v-model="duration.value" controls-outside min="1" @on-change="updateExecutedScenariosHistoryDuration"></InputNumber>
<Select v-model="duration.type" filterable @on-change="updateExecutedScenariosHistoryDuration">
<Select v-model="duration.type" filterable @on-change="updateExecutedScenariosHistoryDuration" :transfer="true">
<Option v-for="durationType in duration.availableTypes" :value="durationType.value" :key="durationType.value">{{durationType.label + (duration.value > 1 ? 's' : '')}}</Option>
</Select>
</div>
Expand Down

0 comments on commit 16bfac2

Please sign in to comment.