diff --git a/fhem/CHANGED b/fhem/CHANGED index 1a39a2cd9..66133764e 100644 --- a/fhem/CHANGED +++ b/fhem/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: fixed issue when using cmdIcon attribute + for devices. - feature: 71_PHILIPS_AUDIO: select presets and favorites by name. - feature: 50_TelegramBot: alias for commands, new readings, support for sending media files; plus fixes diff --git a/fhem/FHEM/95_Dashboard.pm b/fhem/FHEM/95_Dashboard.pm index b4980e3e1..fd61501eb 100644 --- a/fhem/FHEM/95_Dashboard.pm +++ b/fhem/FHEM/95_Dashboard.pm @@ -866,7 +866,7 @@ sub BuildGroup } else { my $nCmd = $cmdIcon{$cmd} ? FW_makeImage($cmdIcon{$cmd},$cmd,"webCmd") : $cmd; - $ret .= FW_pH "cmd.$d=set $d $cmd$rf", $cmd, 1, "col3", 1; + $ret .= FW_pH "cmd.$d=set $d $cmd$rf", $nCmd, 1, "col3", 1; } } }