Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1820 from nbtomo/feature/1779-reword-no-of-tests-…
Browse files Browse the repository at this point in the history
…conducted

検査実施件数のグラフのタイトル、注釈の文言を変更
  • Loading branch information
halsk authored Mar 19, 2020
2 parents e79dcba + 0f4aba7 commit 9000d03
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
26 changes: 17 additions & 9 deletions components/TimeStackedBarChart.vue
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
<template>
<data-view :title="title" :title-id="titleId" :date="date">
<template v-slot:button>
<p class="Graph-Desc">
{{ $t('(注)同一の対象者について複数の検体を調査する場合あり') }}
<br />
{{
$t(
'検査実施数は、速報値として公開するものであり、後日確定データとして修正される場合があります'
)
}}
</p>
<ul class="Graph-Desc">
<li>
{{ $t('(注)医療機関が保険適用で行った検査は含まれていない') }}
</li>
<li>
{{ $t('(注)同一の対象者について複数の検体を検査する場合あり') }}
</li>
<li>
{{
$t(
'(注)速報値として公開するものであり、後日確定データとして修正される場合あり'
)
}}
</li>
</ul>
<data-selector v-model="dataKind" :target-id="chartId" />
</template>
<bar
Expand Down Expand Up @@ -371,6 +377,8 @@ export default Vue.extend(options)
.Graph-Desc {
width: 100%;
margin: 0;
padding-left: 0px;
list-style: none;
font-size: 12px;
color: $gray-3;
}
Expand Down
2 changes: 1 addition & 1 deletion components/cards/TestedNumberCard.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<v-col cols="12" md="6" class="DataCard">
<time-stacked-bar-chart
:title="$t('検査実施数')"
:title="$t('検査実施件数')"
:title-id="'number-of-tested'"
:chart-id="'time-stacked-bar-chart-inspections'"
:chart-data="inspectionsGraph"
Expand Down
2 changes: 1 addition & 1 deletion pages/cards/_card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default {
updatedAt = Data.patients.date
break
case 'number-of-tested':
title = this.$t('検査実施数')
title = this.$t('検査実施件数')
updatedAt = Data.inspections_summary.date
break
case 'number-of-reports-to-covid19-telephone-advisory-center':
Expand Down

0 comments on commit 9000d03

Please sign in to comment.