POW R2 text and values show up in Paper UI, Basic UI, but not in sitemap

I have some 2 POW R2 tasmota flashed devices that the values just do not show up in sitemap, BUT all the values (eg load, voltage ,current) all show correctly in Paper UI, Basic UI etc. My other sonoff devices (Basic, RF, RF Bridge )also show up fine in sitemap.

Sitemap file

Frame label="UPS 192.168.0.5 (POW R2) (175)" 
		Text item=Sonoffups05_Reachable label="Sonoff POW for UPS05 Reachable [%s]"  icon="qualityofservice"
        Switch item=Sonoffups05_Power label="Sonoff POW for UPS05" icon="poweroutlet_uk"
        Text item=Sonoffups05_Load label="Sonoff POW for UPS05 Power load [%.1f W]" icon="heating"       
        Text item=Sonoffups05_Voltage label="Sonoff POW for UPS05 Line voltage [%.1f V]" icon="voltage"       
        Text item=Sonoffups05_Current label="Sonoff POW for UPS05 Line current [%.3f A]"  icon="current"       
        Text item=Sonoffups05_Energy label="Sonoff POW for UPS05 Total energy [%.3f kWh]" icon="energy"
        Text item=Sonoffups05_FW label="Sonoff POW for UPS05 Current FW [%s]" icon="text"
        Text item=Sonoffups05_RSSI label="Sonoff POW for UPS05 WiFi Signal Strength [%d %%]" icon="network"
		
		Frame label="UPS 192.168.0.4 (POW r2) (174)" 
		Text item=Sonoffups04_Reachable label="Sonoff POW for UPS04 Reachable [%s]"  icon="qualityofservice"
        Switch item=Sonoffups04_Power label="Sonoff POW for UPS04" icon="poweroutlet_uk"
        Text item=Sonoffups04_Load label="Sonoff POW for UPS04 Power load [%.1f W]" icon="heating"       
        Text item=Sonoffups04_Voltage label="Sonoff POW for UPS04 Line voltage [%.1f V]" icon="voltage"       
        Text item=Sonoffups04_Current label="Sonoff POW for UPS04 Line current [%.3f A]"  icon="current"       
        Text item=Sonoffups04_Energy label="Sonoff POW for UPS04 Total energy [%.3f kWh]" icon="energy"
        Text item=Sonoffups04_FW label="Sonoff POW for UPS04 Current FW [%s]" icon="text"
        Text item=Sonoffups04_RSSI label="Sonoff POW for UPS04 WiFi Signal Strength [%d %%]" icon="network"  

My corresponding items file

Group  Sonoffups05          "Sonoff POW for UPS05"                                   <group> (Sonoffups05)
String Sonoffups05_Reachable "Sonoff POW for UPS05 Reachable: [%s]"                   <qualityofservice>   (Sonoffups05) { channel="mqtt:topic:ups05:reachable" }
Switch Sonoffups05_Power     "Sonoff POW for UPS05"                          <switch>    (SonoffupsS05) { channel="mqtt:topic:ups05:power", autoupdate="false" }
Number Sonoffups05_Load      "Sonoff POW for UPS05 Power load [%.1f W]"               <heating>       (Sonoffups05) { channel="mqtt:topic:ups05:powerload" }
Number Sonoffups05_Voltage   "Sonoff POW for UPS05 Line voltage [%.1f V]"             <voltage>       (Sonoffups05) { channel="mqtt:topic:ups05:voltage" }
Number Sonoffups05_Current   "Sonoff POW for UPS05 Line current [%.3f A]"             <current>       (Sonoffups05) { channel="mqtt:topic:ups05:current" }
Number Sonoffups05_Energy     "Sonoff POW for UPS05 Total energy [%.3f kWh]"     <energy>  (Sonoffups05) { channel="mqtt:topic:ups05:total" }
Number Sonoffups05_RSSI      "Sonoff POW for UPS05 WiFi Signal Strength [%d %%]"      <network>          (Sonoffups05) { channel="mqtt:topic:ups05:rssi" }
String Sonoffups05_FW        "Sonoff POW for UPS05 Current Firmware [%s]"             <settings>         (Sonoffups05) { channel="mqtt:topic:ups05:version" }

Group  Sonoffups04          "Sonoff POW for UPS04"                                   <group> (Sonoffups04)
String Sonoffups04_Reachable "Sonoff POW for UPS04 Reachable: [%s]"                   <qualityofservice>   (Sonoffups04) { channel="mqtt:topic:ups04:reachable" }
Switch Sonoffups04_Power     "Sonoff POW for UPS04"                          <switch>    (Sonoffups04) { channel="mqtt:topic:ups04:power", autoupdate="false" }
Number Sonoffups04_Load      "Sonoff POW for UPS04 Power load [%.1f W]"               <heating>       (Sonoffups04) { channel="mqtt:topic:ups04:powerload" }
Number Sonoffups04_Voltage   "Sonoff POW for UPS04 Line voltage [%.1f V]"             <voltage>       (Sonoffups04) { channel="mqtt:topic:ups04:voltage" }
Number Sonoffups04_Current   "Sonoff POW for UPS04 Line current [%.3f A]"             <current>       (Sonoffups04) { channel="mqtt:topic:ups04:current" }
Number Sonoffups04_Energy     "Sonoff POW for UPS04 Total energy [%.3f kWh]"     <energy>  (Sonoffups04) { channel="mqtt:topic:ups04:total" }
Number Sonoffups04_RSSI      "Sonoff POW for UPS04 WiFi Signal Strength [%d %%]"      <network>          (Sonoffups04) { channel="mqtt:topic:ups04:rssi" }
String Sonoffups04_FW        "Sonoff POW for UPS04 Current Firmware [%s]"             <settings>         (Sonoffups04) { channel="mqtt:topic:ups04:version" }

What am I doing wrong?

Something funny about the dogears " in your sitemap, as shown up by the highlighting here.

dogears?
err…not sure I know what you mean

Did you check the openhab log file? From the first sight i am missing some brackets {} in the frame definition. just check the documentation

I will go back and check it again. thanks!