[DOCS] Better error message for strict override variable fields
This commit is contained in:
parent
73094e79bb
commit
d5ee8c2f56
1 changed files with 3 additions and 2 deletions
|
|
@ -213,8 +213,9 @@ class OverridesStringFormatterValidator(StringFormatterValidator):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
_variable_not_found_error_msg_formatter = (
|
_variable_not_found_error_msg_formatter = (
|
||||||
"Override variable '{variable_name}' does not exist. "
|
"Override variable '{variable_name}' does not exist. For this field, ensure your override "
|
||||||
"Available override variables: {available_fields}"
|
"variable does not contain any source variables - it is a requirement that this be a "
|
||||||
|
"static string. Available override variables: {available_fields}"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue