Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/weko-schema-ui/weko_schema_ui/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ def replace_nameIdentifierScheme_for_jpcoar_v2(atr_vm_item):
else:
# current_app.logger.error(item_type.schema["properties"][key_item_parent])
atr_name = ""
if self._item_type and self._item_type.schema and "title" in self._item_type.schema.get("properties", {}).get(key_item_parent):
if self._item_type and self._item_type.schema and "title" in self._item_type.schema.get("properties", {}).get(key_item_parent, {}):
atr_name = self._item_type.schema["properties"][key_item_parent]["title"]
vlst_child = get_mapping_value(mpdic, {},
key_item_parent,
Expand Down