Input_select icon not showing up

Minor issue and purely cosmetic, but I have a group that displays input_boolean and input_select, the input_boolean icons show up fine… the input_select however, does not.

I guess I’m missing something?

input_boolean.yaml:

---
automation_override:
  name: Disable Automation
  icon: mdi:stop
  initial: off

leaving_work:
  name: Send leaving work notifications
  icon: mdi:comment-text

vacation_mode:
  name: Vacation Mode
  icon: mdi:airplane-takeoff
  initial: off

input_select.yaml

 ---
house_mode:
  name: House Mode
  icon: mdi-home
  options:
    - Morning
    - Day
    - Evening
    - Night
  initial: Day

groups:

inputs:
  name: Settings
  entities:
    - input_boolean.automation_override
    - input_boolean.leaving_work
    - input_boolean.vacation_mode
    - input_select.house_mode

Uhmm … I actually have one configured with that:

here’s the config I have:

home_modes:
name: Home Mode
options:
- Home
- Away
- Night
- Vacations
initial: Home
icon: mdi:panda

is this what you’re trying to address?

I am actually… I shamelessly stole the example from Conditions based on how long the motion sensor has been 'away'

I think maybe there is a issue mixing input_select with input_boolean?

It’s working for me … I’m mixing, 2 selectors, 2 scripts and 1 input_boolean… please go ahead and share your config so we can take a look together.

Sorry about the delay, I had to cleanup and sanitize my config… I appreciate the time, thank you.

https://github.com/jceloria/home-assistant

Might be just a typo, please try icon: mdi:home, i.e. with a colon instead of hyphen between mdi and home.

According to the documentation you can pick and choose from the material design icon set and then prefix the icon name with mdi: in the configuration file.

That was it, thank you… I feel like a moron. Apparently I had been looking at it way to long.

Thanks again.