We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b3aebed + c8bd443 commit c536497Copy full SHA for c536497
strictdoc/core/query_engine/query_object.py
@@ -196,6 +196,10 @@ def _evaluate_node_field_expression(
196
)
197
grammar_field_titles = list(map(lambda f: f.title, element.fields))
198
if field_name not in grammar_field_titles:
199
+ # These fields are used on the statistics screen but a user
200
+ # may have them disabled in the grammar.
201
+ if field_name in ("UID", "STATUS", "RATIONALE"):
202
+ return None
203
raise AttributeError(f"No such requirement field: {field_name}")
204
field_value = requirement._get_cached_field(field_name, False)
205
if field_value is not None:
0 commit comments