We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5314b3 commit c2f86a5Copy full SHA for c2f86a5
1 file changed
pipelines/jobs/metadata.py
@@ -85,6 +85,8 @@ def load_metadata_for_model(context: OpExecutionContext, sheet_name: str, model:
85
current = getattr(instance, k)
86
if isinstance(current, list):
87
current = sorted(current)
88
+ # Note that we only allow changes to the fields. If a field is blank in the worksheet,
89
+ # we leave any value that may have been set manually in the database.
90
if v and v != current:
91
if cpc[-2] != "H" and k not in [
92
"aliases",
0 commit comments