Skip to content

Commit

Permalink
Fix sections item translation for config flow (#21924)
Browse files Browse the repository at this point in the history
  • Loading branch information
karwosts authored Sep 8, 2024
1 parent de292a8 commit 7f6325f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dialogs/config-flow/show-dialog-config-flow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const showConfigFlowDialog = (
);
}

const prefix = options?.path?.[0] ? `sections.${options.path[0]}` : "";
const prefix = options?.path?.[0] ? `sections.${options.path[0]}.` : "";

return (
hass.localize(
Expand Down

0 comments on commit 7f6325f

Please sign in to comment.