craftbeerpi3 icon indicating copy to clipboard operation
craftbeerpi3 copied to clipboard

Non visible marked sensor still visible after reboot

Open JamFfm opened this issue 7 years ago • 10 comments

My Temp sensor which is marked as hide still appears after reboot and is visible in Bewing. In Hardware dubbleclick on the checkbox (hide on dashboard) and press update and the sensor is again absend.

JamFfm avatar Jun 19 '17 19:06 JamFfm

I will check this

Manuel83 avatar Jun 19 '17 22:06 Manuel83

I'm having the same problem after the latest update but I haven't cleared the database yet.

swimIan avatar Jun 27 '17 13:06 swimIan

I'm on a brand new database (on a new Pi even) and I still have hidden sensors come back after a reboot.

On Jun 27, 2017, at 9:08 AM, swimIan [email protected] wrote:

I'm having the same problem after the latest update but I haven't cleared the database yet.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

IndyJoeA avatar Jun 27 '17 14:06 IndyJoeA

I just cleared the database and still see hidden items on the dashboard too.

swimIan avatar Jun 27 '17 21:06 swimIan

Any updates on this.

swimIan avatar Jul 24 '17 06:07 swimIan

Any news? They dissapear when I hit hide, but after reboot - they are back. Would be nice to fix this. I use the 7 inch Pi LCD, and with a 3 kettle setup, this makes the dahsboard rather messy.

BrewChef avatar Sep 06 '17 17:09 BrewChef

I am having the same problems. This is 8 months after the original post. Does anyone know of a fix?

KenCope avatar Feb 18 '18 22:02 KenCope

@Manuel83 Manuel83, I wish I knew enough to help fix this, but cannot. Any update on it? Thanks for all you do.

KenCope avatar Mar 20 '18 22:03 KenCope

Still broke.... should be easy fix...

clearwaterbrewer avatar Oct 30 '18 15:10 clearwaterbrewer

I made a CSS hack to hide the required sensors: please take a look at the video: https://youtu.be/0_a43LK0PVg

the code:

<style>

    /*hide on dashboard hack
    write the order number of the sensor(s) below between the parentheses,
    each line for new sensor)*/
    
    div.col-md-9.col-sm-8 > div:nth-child(3) > div:nth-child(1), /*fisrt sensor*/
    div.col-md-9.col-sm-8 > div:nth-child(3) > div:nth-child(6) /*sixth sensor*/
    {
    	display: none;
    }
    
    </style>

Philusha1983 avatar Nov 07 '18 15:11 Philusha1983