95_Dashboard: fix for device specs not working in dashboard any more

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@12251 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
talkabout 2016-10-03 09:45:43 +00:00
parent a2f0a4d9ff
commit 3218d93bbc
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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 {