Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
class="flex-grow"
:color="planLimitSelected.value === 'amount' ? 'primary' : 'grey'"
@click="planLimitSelected.value = 'amount'"
label="Amount"
label="Energie"
/>
</q-btn-group>
<div v-if="planLimitSelected.value === 'soc'" class="q-mt-md">
Expand All @@ -86,9 +86,13 @@
<q-input
v-if="planLimitSelected.value === 'amount'"
v-model="planLimitAmount.value"
label="Energiemenge (kWh)"
label="Ziel-Energie"
class="col"
/>
>
<template v-slot:append>
<div class="text-body2">kWh</div>
</template>
</q-input>

<div
v-if="
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<template>
<div class="row justify-between items-center">
<div class="text-subtitle2 q-mr-sm q-mt-md">Termine Zielladen:</div>
</div>
<div class="row q-mb-md justify-end">
<div class="row justify-between items-center q-mt-md">
<div class="text-subtitle2">Termine Zielladen:</div>
<q-btn
round
size="sm"
Expand All @@ -11,7 +9,6 @@
@click="addScheduledChargingPlan"
/>
</div>

<div
v-if="plans.length === 0"
class="row q-mt-sm q-pa-sm bg-primary text-white no-wrap message-text"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,13 @@
<q-input
v-if="planDcChargingEnabled"
v-model="planDcPower.value"
label="Ladeleistung (DC) (kW)"
label="Ladeleistung (DC)"
class="col q-mb-sm"
/>
>
<template v-slot:append>
<div class="text-body2">kW</div>
</template>
</q-input>

<div class="text-subtitle2 q-mb-sm">Begrenzung</div>
<q-btn-group class="full-width">
Expand All @@ -73,7 +77,7 @@
class="flex-grow"
:color="planLimitSelected.value === 'amount' ? 'primary' : 'grey'"
@click="planLimitSelected.value = 'amount'"
label="Amount"
label="Energie"
/>
</q-btn-group>
<div v-if="planLimitSelected.value === 'soc'" class="q-mt-md">
Expand All @@ -90,9 +94,13 @@
<q-input
v-if="planLimitSelected.value === 'amount'"
v-model="planLimitAmount.value"
label="Energiemenge (kWh)"
label="Ziel-Energie"
class="col"
/>
>
<template v-slot:append>
<div class="text-body2">kWh</div>
</template>
</q-input>

<div class="q-mb-md">
<div class="text-subtitle2 q-mb-sm q-mt-md">Wiederholungen</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,13 @@
class="row justify-between items-center q-mt-md"
>
<div class="text-subtitle2">Termine Zeitladen:</div>
<div class="row q-mb-md justify-end">
<q-btn
round
size="sm"
color="primary"
icon="add"
@click="addScheduledChargingPlan"
/>
</div>
<q-btn
round
size="sm"
color="primary"
icon="add"
@click="addScheduledChargingPlan"
/>
</div>
<div
v-if="plans.length === 0 && timeChargingEnabled"
Expand Down