From 9283da37f3e85a82851cb42fd1e2d9b1b268d62e Mon Sep 17 00:00:00 2001 From: Ian Richardson Date: Wed, 5 Dec 2018 03:51:07 -0600 Subject: [PATCH] Add config options (#7719) * Add config options * :hammer: Fix build * :ambulance: Another issue fix --- source/_lovelace/picture-entity.markdown | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/source/_lovelace/picture-entity.markdown b/source/_lovelace/picture-entity.markdown index 201641d3790..450388e757e 100644 --- a/source/_lovelace/picture-entity.markdown +++ b/source/_lovelace/picture-entity.markdown @@ -58,14 +58,27 @@ show_state: default: true tap_action: required: false - description: "Set to `toggle` for turning entity on/off." + description: "Action to perform when clicked (e.g., `more-info`, `toggle`, `navigate`, `call-service`)." type: string default: more-info hold_action: required: false - description: Action to perform when clicked-and-held (e.g., `more-info`, `toggle`). + description: "Action to perform when clicked-and-held (e.g., `more-info`, `toggle`, `navigate`, `call-service`)." type: string default: none +navigation_path: + required: false + description: "Path to navigate to when action set to `navigate`." + type: string +service: + required: false + description: "For `call-service`, e.g., `media_player.media_play_pause`" + type: string +service_data: + required: false + description: The service data to use. + type: object + default: "`entity_id: entity_id`" {% endconfiguration %} ## {% linkable_title Examples %}