mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 10:59:50 +00:00
fix not showing base error bug (#19340)
This commit is contained in:
@@ -110,9 +110,11 @@ export const showOptionsFlowDialog = (
|
||||
},
|
||||
|
||||
renderShowFormStepFieldError(hass, step, error) {
|
||||
return hass.localize(
|
||||
`component.${configEntry.domain}.options.error.${error}`,
|
||||
step.description_placeholders
|
||||
return (
|
||||
hass.localize(
|
||||
`component.${configEntry.domain}.options.error.${error}`,
|
||||
step.description_placeholders
|
||||
) || error
|
||||
);
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user