Skip to content

Commit

Permalink
run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschga committed Nov 17, 2024
1 parent b13d8fd commit 7497f73
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
7 changes: 5 additions & 2 deletions assets/js/components/ChargingPlanRepeatingSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
</div>
</div>
<div class="row">
<div v-if="numberPlans" class="col-id d-none d-lg-flex align-items-center justify-content-start">
<div
v-if="numberPlans"
class="col-id d-none d-lg-flex align-items-center justify-content-start"
>
<h5>#{{ id + 2 }}</h5>
</div>
<div class="col-5 d-lg-none col-form-label">
Expand Down Expand Up @@ -131,7 +134,7 @@ export default {
active: Boolean,
rangePerSoc: Number,
formIdPrefix: String,
numberPlans: Boolean
numberPlans: Boolean,
},
emits: ["repeating-plan-updated", "repeating-plan-removed"],
data: function () {
Expand Down
7 changes: 5 additions & 2 deletions assets/js/components/ChargingPlanStaticSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
</div>
</div>
<div class="row">
<div v-if="numberPlans" class="col-id d-none d-lg-flex align-items-center justify-content-start">
<div
v-if="numberPlans"
class="col-id d-none d-lg-flex align-items-center justify-content-start"
>
<h5>#1</h5>
</div>
<div class="col-5 d-lg-none col-form-label">
Expand Down Expand Up @@ -153,7 +156,7 @@ export default {
socPerKwh: Number,
capacity: Number,
socBasedPlanning: Boolean,
numberPlans: Boolean
numberPlans: Boolean,
},
emits: ["static-plan-updated", "static-plan-removed", "plan-preview"],
data: function () {
Expand Down
2 changes: 1 addition & 1 deletion assets/js/components/ChargingPlansRepeatingSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default {
id: Number,
rangePerSoc: Number,
initialPlans: { type: Array, default: () => [] },
numberPlans: Boolean
numberPlans: Boolean,
},
emits: ["repeating-plans-updated", "plans-preview"],
data: function () {
Expand Down

0 comments on commit 7497f73

Please sign in to comment.