Minimalist UI custom-card my-slider doens't work

I am having trouble making slider appear on my minimalist dashboard. Everytime I enable ulm_card_light_enable_slider from false to true. I get error on the page as custom-element doesn’t exist: my-slider. How do I resolve this?

  • type: horizontal-stack
    cards:
    • type: “custom:button-card”
      template: card_light
      entity: light.home_living_room_light1
      variables:
      ulm_card_light_enable_slider: true
      ulm_card_light_enable_color: false
      ulm_card_light_force_background_color: true

Hey. I´m having the exact same issue. Did you ever find a solution?

Had the same issue… some googling later:

  1. You go to HACS
  2. You click on Frontend
  3. You click on the three dots in the top right corner (See screenshot 1)
  4. In the dropdown you click on ‘Custom repositories’
  5. In the popup asking for URL and category input as following (Or as in screenshot 2)
    URL: GitHub - AnthonMS/my-cards: Bundle of my custom Lovelace cards for Home Assistant. Includes: my-slider, my-slider-v2, my-button
    Category: Lovelace

from 3rd step of installation guide unclear · Issue #17 · AnthonMS/my-cards (github.com)

1 Like

Not sure if this is the best solution, but this is what I did to fix this.

When installing my-cards through HACS, the my-cards folder is installed under “/config/www/community/my-cards”.

In the ui-lovelace.yaml, the default import in the top is:
button_card_templates: !include_dir_merge_named “…/…/custom_components/ui_lovelace_minimalist/ui_minimalist/ulm_templates/”

Therefore I moved the my-cards folder from the custom_components folder to the following directory: “custom_components/ui_lovelace_minimalist/ui_minimalist/ulm_templates/” and it worked fine.

This could also have been solved by importing it from the original directory, but I went with this route since I am only doing fronted configuration through UI minimalist.