diff --git a/CHANGED b/CHANGED index 185d51cef..4dfece411 100644 --- a/CHANGED +++ b/CHANGED @@ -1,5 +1,7 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - bugfix: 95_Dashboard: fix for device specs not working in dashboard any + more. - bugfix: 95_Dashboard: fix for yesterdays commit. - feature: readingsGroup: allow grouping of similar readings from one device 14_SD_WS09.pm WH1080 CRC-Berechung angepaßt--> automatische Modelauswahl diff --git a/FHEM/95_Dashboard.pm b/FHEM/95_Dashboard.pm index bdc5cdf18..ea791ba76 100644 --- a/FHEM/95_Dashboard.pm +++ b/FHEM/95_Dashboard.pm @@ -570,7 +570,7 @@ sub BuildDashboardTab($$) my @groupparts = split(':', $devicegroup); if (@groupparts == 1) { - my @devices = map { $_ . ':' . $_ } devspec2array($groupparts[0]); + my @devices = map { $_ . '$$$' . $_ } devspec2array($groupparts[0]); push(@tabdevicegroups, @devices); } else {