Skip to content

Commit 7ce9518

Browse files
authored
Merge pull request #3071 from benderl/fixes
Fixes
2 parents 405aff4 + b46f255 commit 7ce9518

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

packages/modules/web_themes/koala/source/src/components/ChargePointScheduledSettings.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ const mqttStore = useMqttStore();
5858
const isSmallScreen = computed(() => Screen.lt.sm);
5959
6060
const plans = computed(() =>
61-
mqttStore.vehicleScheduledChargingPlans(props.chargePointId)
61+
mqttStore.vehicleScheduledChargingPlans(props.chargePointId),
6262
);
6363
6464
const selectedPlanId = ref<number | null>(null);
6565
6666
const selectedPlan = computed(() => {
6767
if (selectedPlanId.value === null) return null;
68-
return plans.value.find(p => p.id === selectedPlanId.value);
68+
return plans.value.find((plan) => plan.id === selectedPlanId.value);
6969
});
7070
7171
const currentPlanDetailsVisible = ref(false);

packages/modules/web_themes/koala/source/src/components/charts/energyFlowChart/energy-flow-chart-models.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,3 @@ export interface FlowComponent {
3333
soc?: number;
3434
icon: string;
3535
}
36-

packages/modules/web_themes/koala/source/src/css/quasar.variables.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ $grey: #9e9e9e; // Quasar's default grey
3737
$toggle-off: #e0e0e0;
3838
$grid-stroke: #a33c42;
3939
$grid-fill: #efb6bc33;
40-
$secondary-counter-stroke: #FFA9A8;
41-
$secondary-counter-fill: #FFA9A833;
40+
$secondary-counter-stroke: #ffa9a8;
41+
$secondary-counter-fill: #ffa9a833;
4242
$home-stroke: #949aa1;
4343
$home-fill: #949aa133;
4444
$pv-stroke: #66bd7a;
@@ -48,7 +48,7 @@ $battery-stroke: #ba7128;
4848
$battery-fill: #ba712833;
4949
$battery-fill-flow-diagram: #c6a583;
5050
$charge-point-stroke: #5c93d1;
51-
$charge-point-fill: #5c93d14D;
51+
$charge-point-fill: #5c93d14d;
5252
// Light theme (default)
5353
:root {
5454
--q-primary: #{$primary};
@@ -218,7 +218,8 @@ $charge-point-fill: #5c93d14D;
218218
}
219219

220220
// Scrollbar styling für .q-list auto Light Theme
221-
.q-list, .narrow-scrollbar {
221+
.q-list,
222+
.narrow-scrollbar {
222223
scrollbar-width: thin;
223224
scrollbar-color: var(--q-primary) var(--q-background-2);
224225
}

packages/modules/web_themes/koala/source/src/stores/mqtt-store.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3288,7 +3288,6 @@ export const useMqttStore = defineStore('mqtt', () => {
32883288
return undefined;
32893289
});
32903290

3291-
32923291
/**
32933292
* Get all counter ids from component hierarchy
32943293
* @returns number[]
@@ -3373,7 +3372,7 @@ export const useMqttStore = defineStore('mqtt', () => {
33733372
* @returns string | number | ValueObject | undefined
33743373
*/
33753374
const counterDailyImported = computed(() => {
3376-
return (returnType: string = 'textValue', counterId?: number ) => {
3375+
return (returnType: string = 'textValue', counterId?: number) => {
33773376
const id = counterId ?? getGridId.value;
33783377
if (id === undefined) {
33793378
return '---';

runs/install_packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
echo "install required packages with 'apt-get'..."
33
sudo apt-get -q update
44
sudo apt-get -q -y install \
5-
vim bc jq socat sshpass sudo ssl-cert mmc-utils inotify-tools \
5+
vim bc jq socat sshpass sudo ssl-cert mmc-utils inotify-tools iptables \
66
apache2 libapache2-mod-php \
77
php php-gd php-curl php-xml php-json \
88
git \

0 commit comments

Comments
 (0)