Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix double underscore typo in display_schema javascript #402

Merged
merged 1 commit into from
Nov 14, 2023
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
4 changes: 2 additions & 2 deletions datalad_catalog/catalog/assets/display_schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
const dataset_schema_file = "./assets/jsonschema_dataset.json";
const authors_schema_file = "./assets/jsonschema_authors.json";
const file_schema_file = "./assets/jsonschema_file.json";
const sources_schema_file = "./assets/jsonschema__metadata_sources.json";
const sources_schema_file = "./assets/jsonschema_metadata_sources.json";
const catalog_schema_file = "./assets/jsonschema_catalog.json";

const TYPES = [
Expand Down Expand Up @@ -35,7 +35,7 @@ schema_files = {
"jsonschema_dataset": dataset_schema_file,
"jsonschema_file": file_schema_file,
"jsonschema_authors": authors_schema_file,
"jsonschema__metadata_sources": sources_schema_file,
"jsonschema_metadata_sources": sources_schema_file,
}

schema_keywords = ["$schema", "$id"]
Expand Down
Loading