Skip to content

Commit

Permalink
Add prefix support to the Text selector (#2743)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Jul 19, 2023
1 parent c5d6d4b commit 77b6551
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/language-service/src/schemas/integrations/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,13 @@ export interface TextSelector {
multiline?: boolean;

/**
* Set to true to display the input as a multi-line text box on the user interface.
* Allows adding a prefix to the input field.
* https://www.home-assistant.io/docs/blueprint/selectors/#text-selector
*/
prefix?: string;

/**
* Allows adding a suffix to the input field.
* https://www.home-assistant.io/docs/blueprint/selectors/#text-selector
*/
suffix?: string;
Expand Down

0 comments on commit 77b6551

Please sign in to comment.