Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleanup before release #660

Merged
merged 2 commits into from
Mar 7, 2025
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
3 changes: 0 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
@send-command="sendCommand"
/>
</div>
<donation-banner />
</div>
<page-footer />
<messages />
Expand All @@ -25,7 +24,6 @@
<script>
import NavBar from "./components/OpenwbPageNavbar.vue";
import PageFooter from "./components/OpenwbPageFooter.vue";
import DonationBanner from "./components/OpenwbPageDonationBanner.vue";
import Messages from "./components/OpenwbPageMessages.vue";
import Blocker from "./components/OpenwbPageBlocker.vue";
import mqtt from "mqtt";
Expand All @@ -35,7 +33,6 @@ export default {
components: {
NavBar,
PageFooter,
DonationBanner,
Messages,
Blocker,
},
Expand Down
50 changes: 0 additions & 50 deletions src/components/OpenwbPageDonationBanner.vue

This file was deleted.

2 changes: 1 addition & 1 deletion src/views/VehicleConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
/>
<openwb-base-alert subtype="info">
Die hier eingetragenen ID-Tags dienen ausschließlich der Fahrzeugzuordnung.<br />
<span v-html="$store.state.text.rfidWiki" />

Check warning on line 174 in src/views/VehicleConfig.vue

View workflow job for this annotation

GitHub Actions / build (18.x)

'v-html' directive can lead to XSS attack
</openwb-base-alert>
<hr />
</div>
Expand Down Expand Up @@ -459,7 +459,7 @@
<openwb-base-heading> Angaben zur Ladeleistung (DC) </openwb-base-heading>
<openwb-base-number-input
title="Mindestleistung"
:min="5"
:min="0"
unit="kW"
:model-value="ac_current2dc_power(template.dc_min_current)"
@update:model-value="updateState(key, dc_power2ac_current($event), 'dc_min_current')"
Expand Down
Loading