Skip to content

Commit

Permalink
Merge pull request openWB#496 from LKuemmel/dev
Browse files Browse the repository at this point in the history
linting
  • Loading branch information
LKuemmel authored Jun 25, 2024
2 parents 7aa152f + a36a21c commit b3917cd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/components/debug_config/LogCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ export default {
var logContents = "";
for (let i = 4; i >= 1; i--) {
const result = await this.getFilePromise(fileName + "." + i, true);
const result = await this.getFilePromise(
fileName + "." + i,
true,
);
logContents += result;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/devices/mtec/bat.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
notSelected="Bitte auswählen"
:options="[
{ value: 2, text: 'Gen 2' },
{ value: 3, text: 'Gen 3' }
{ value: 3, text: 'Gen 3' },
]"
:model-value="configuration.generation"
@update:model-value="
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<div class="electricity-tariff-energycharts">
<openwb-base-alert subtype="info">
Börsenstrompreise von Energy Charts (energy-charts.info)<br />
Die Rohdaten werden von Wissenschaftlern des Fraunhofer-Instituts für
Solare Energiesysteme ISE aus zahlreichen Quellen stündlich oder
Die Rohdaten werden von Wissenschaftlern des Fraunhofer-Instituts
für Solare Energiesysteme ISE aus zahlreichen Quellen stündlich oder
täglich abgerufen und für die Darstellung aufbereitet.
</openwb-base-alert>
<openwb-base-select-input
Expand Down

0 comments on commit b3917cd

Please sign in to comment.