Cistern naming FIX

This commit is contained in:
Patrick Haßel 2025-04-17 16:19:13 +02:00
parent b6dfdd5686
commit 9ee8060f05
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ export class Path {
export const ROUTING = { export const ROUTING = {
ENERGY: new Path('Energy', 'Energie', true), ENERGY: new Path('Energy', 'Energie', true),
CISTERN: new Path('CISTERN', 'Zisterne', true), CISTERN: new Path('Cistern', 'Zisterne', true),
GREENHOUSE: new Path('Greenhouse', 'Gewächshaus', false), GREENHOUSE: new Path('Greenhouse', 'Gewächshaus', false),
} }

View File

@ -28,9 +28,9 @@ export class SeriesService extends AbstractRepositoryService {
readonly greenhouseIlluminance: SeriesWrapper = new SeriesWrapper("greenhouse/illuminance", this.onSubscribe, this.onUnsubscribe); readonly greenhouseIlluminance: SeriesWrapper = new SeriesWrapper("greenhouse/illuminance", this.onSubscribe, this.onUnsubscribe);
readonly cisternHeight: SeriesWrapper = new SeriesWrapper("Cistern/height", this.onSubscribe, this.onUnsubscribe); readonly cisternHeight: SeriesWrapper = new SeriesWrapper("cistern/height", this.onSubscribe, this.onUnsubscribe);
readonly cisternVolume: SeriesWrapper = new SeriesWrapper("Cistern/volume", this.onSubscribe, this.onUnsubscribe); readonly cisternVolume: SeriesWrapper = new SeriesWrapper("cistern/volume", this.onSubscribe, this.onUnsubscribe);
protected get liveValues(): SeriesWrapper[] { protected get liveValues(): SeriesWrapper[] {
return [ return [