Skip to content

Commit 350617b

Browse files
authored
don't show preconfigured options in UI, linting (#619)
* don't show preconfigured options in UI
1 parent a043ba5 commit 350617b

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<template>
2+
<!-- Einstellungen sind vorbelegt und sollen nicht im UI angezeigt werden -->
3+
<div class="device-benning-inverter"></div>
4+
</template>
5+
6+
<script>
7+
import ComponentConfigMixin from "../../ComponentConfigMixin.vue";
8+
9+
export default {
10+
name: "DeviceBenningInverter",
11+
mixins: [ComponentConfigMixin],
12+
};
13+
</script>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<template>
2+
<!-- Einstellungen sind vorbelegt und sollen nicht im UI angezeigt werden -->
3+
<div class="device-opendtu-inverter"></div>
4+
</template>
5+
6+
<script>
7+
import ComponentConfigMixin from "../../ComponentConfigMixin.vue";
8+
9+
export default {
10+
name: "DeviceOpenDTUInverter",
11+
mixins: [ComponentConfigMixin],
12+
};
13+
</script>

0 commit comments

Comments
 (0)