Skip to content

Commit

Permalink
style: run prettier... again...
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Stainbrook <[email protected]>
  • Loading branch information
rackrick committed May 27, 2024
1 parent 26f020e commit 4785f12
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions src/components/panels/Miscellaneous/MoonrakerSensor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<v-col class="pb-3">
<v-subheader class="sensor-name _moonraker-sensor-subheader">
{{ convertName(name) }}
</v-subheader>
<v-subheader class="_moonraker-sensor-subheader">
<moonraker-sensor-value
</v-subheader>
<v-subheader class="_moonraker-sensor-subheader">
<moonraker-sensor-value
v-for="(valueName, index) of valueNames"
:key="'moonraker_sensor_value_' + index"
:sensor="name"
:value-name="valueName" />
:value-name="valueName" />
</v-subheader>
</v-col>
</v-row>
Expand All @@ -22,9 +22,7 @@ import { convertName } from '@/plugins/helpers'
import { Component, Mixins, Prop } from 'vue-property-decorator'
import BaseMixin from '@/components/mixins/base'
import MoonrakerSensorValue from '@/components/panels/Miscellaneous/MoonrakerSensorValue.vue'
import {
} from '@mdi/js'
import {} from '@mdi/js'
@Component({
components: { MoonrakerSensorValue },
Expand All @@ -51,7 +49,6 @@ export default class MoonrakerSensor extends Mixins(BaseMixin) {
.sensor-name {
font-weight: bold;
margin-bottom: 5px;
margin-bottom: 5px;
}
</style>

0 comments on commit 4785f12

Please sign in to comment.