Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
benderl committed Apr 3, 2024
1 parent 0f9e686 commit 1e598b4
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions src/components/status/InverterCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,12 @@
step="0.001"
unit="kWh"
:model-value="
formatNumberTopic('openWB/pv/' + inverter.id + '/get/daily_exported', 3, 3, 0.001)
formatNumberTopic(
'openWB/pv/' + inverter.id + '/get/daily_exported',
3,
3,
0.001,
)
"
/>
<openwb-base-text-input
Expand All @@ -89,7 +94,12 @@
step="0.001"
unit="kWh"
:model-value="
formatNumberTopic('openWB/pv/' + inverter.id + '/get/monthly_exported', 3, 3, 0.001)
formatNumberTopic(
'openWB/pv/' + inverter.id + '/get/monthly_exported',
3,
3,
0.001,
)
"
/>
<openwb-base-text-input
Expand All @@ -99,7 +109,12 @@
step="0.001"
unit="kWh"
:model-value="
formatNumberTopic('openWB/pv/' + inverter.id + '/get/yearly_exported', 3, 3, 0.001)
formatNumberTopic(
'openWB/pv/' + inverter.id + '/get/yearly_exported',
3,
3,
0.001,
)
"
/>
</openwb-base-card>
Expand Down

0 comments on commit 1e598b4

Please sign in to comment.