Skip to content

Commit

Permalink
Avoid multiple parentheses in product availability title
Browse files Browse the repository at this point in the history
  • Loading branch information
siiptuo committed Jan 24, 2025
1 parent 4f70b0e commit afc8354
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/site/SiteProducts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<section id="product_quality" class="graph" v-if="dataStatus && dataStatus.dates.length > 0">
<h2>
Product quality
<template v-if="selectedProductName">/ availability &ndash; {{ selectedProductName }} </template>
<template v-if="instrumentName"> ({{ instrumentName }})</template>
<template v-if="modelName"> ({{ modelName }})</template>
<template v-if="selectedProductName">
/ availability &ndash; {{ instrumentName || modelName || selectedProductName }}
</template>
</h2>

<section class="details" v-if="selectedProductId">
Expand Down

0 comments on commit afc8354

Please sign in to comment.