Client - minor changes and fix
This commit is contained in:
@ -38,6 +38,7 @@
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-width: 30%;
|
||||
line-height: 1.2em;
|
||||
img {
|
||||
border-radius: 50%;
|
||||
height: 90px;
|
||||
|
@ -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"
|
||||
|
@ -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>
|
||||
|
@ -39,7 +39,7 @@
|
||||
:value="sport.id"
|
||||
:key="sport.id"
|
||||
>
|
||||
{{ sport.label }}
|
||||
{{ sport.translatedLabel }}
|
||||
</option>
|
||||
</select>
|
||||
</div>
|
||||
|
@ -16,5 +16,5 @@
|
||||
"LABEL": "par page"
|
||||
}
|
||||
},
|
||||
"TOTAL ": "Total"
|
||||
"TOTAL": "Total"
|
||||
}
|
Reference in New Issue
Block a user