forked from Kispi/Core
feat(webapp): change wording of min wage to daily
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
f1e7c0b514
commit
54d60744d0
2 changed files with 3 additions and 3 deletions
|
@ -83,7 +83,7 @@
|
||||||
<label
|
<label
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
class="btn bg-base-300 normal-case"
|
class="btn bg-base-300 normal-case"
|
||||||
>{{ CurrencyService.toString(entry[header.key] * settings.minWage) }} / h <ChevronDownIcon class="h-4 w-4" /></label>
|
>{{ CurrencyService.toString(entry[header.key] * settings.minWage) }} / Tag <ChevronDownIcon class="h-4 w-4" /></label>
|
||||||
<ul
|
<ul
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
class="dropdown-content menu rounded-box z-[1] w-52 bg-base-100 p-2 shadow"
|
class="dropdown-content menu rounded-box z-[1] w-52 bg-base-100 p-2 shadow"
|
||||||
|
@ -91,7 +91,7 @@
|
||||||
<li
|
<li
|
||||||
v-for="i of settings.maxWageFactor"
|
v-for="i of settings.maxWageFactor"
|
||||||
@click="$emit('selectWage', {id: entry.id, wageFactor: i}); removeFocus();"
|
@click="$emit('selectWage', {id: entry.id, wageFactor: i}); removeFocus();"
|
||||||
><a>{{ CurrencyService.toString(settings.minWage * i ) }} / h</a></li>
|
><a>{{ CurrencyService.toString(settings.minWage * i ) }} / Tag</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
</template>
|
</template>
|
||||||
<div class="mt-4 flex h-full flex-col gap-4">
|
<div class="mt-4 flex h-full flex-col gap-4">
|
||||||
<div class="flex place-items-center justify-between">
|
<div class="flex place-items-center justify-between">
|
||||||
<span>Mindestlohn</span>
|
<span>Mindestlohn pro Tag</span>
|
||||||
<AtomCurrencyInput
|
<AtomCurrencyInput
|
||||||
v-model="minWage"
|
v-model="minWage"
|
||||||
class="w-2/4"
|
class="w-2/4"
|
||||||
|
|
Loading…
Reference in a new issue