Client - minor changes and fix

This commit is contained in:
Sam
2021-11-11 09:41:23 +01:00
parent eef66cb735
commit 07576ba08a
19 changed files with 27 additions and 25 deletions

View File

@ -38,6 +38,7 @@
justify-content: center;
align-items: center;
min-width: 30%;
line-height: 1.2em;
img {
border-radius: 50%;
height: 90px;

View File

@ -50,7 +50,7 @@
:value="sport.id"
:key="sport.id"
>
{{ sport.label }}
{{ sport.translatedLabel }}
</option>
</select>
</div>
@ -178,7 +178,7 @@
name="workout-distance"
type="number"
min="0"
step="0.1"
step="0.01"
required
@invalid="invalidateForm"
:disabled="loading"

View File

@ -3,8 +3,8 @@
<Card>
<template #title>{{ $t('workouts.NOTES') }}</template>
<template #content>
{{ notes && notes !== '' ? notes : $t('workouts.NO_NOTES') }}</template
>
{{ notes && notes !== '' ? notes : $t('workouts.NO_NOTES') }}
</template>
</Card>
</div>
</template>
@ -27,6 +27,7 @@
#workout-note {
::v-deep(.card-content) {
font-style: italic;
white-space: pre-wrap;
}
}
</style>

View File

@ -39,7 +39,7 @@
:value="sport.id"
:key="sport.id"
>
{{ sport.label }}
{{ sport.translatedLabel }}
</option>
</select>
</div>

View File

@ -16,5 +16,5 @@
"LABEL": "par page"
}
},
"TOTAL ": "Total"
"TOTAL": "Total"
}