Skip to content

Commit

Permalink
Merge pull request #402 from datalad/fix-schema-display
Browse files Browse the repository at this point in the history
Fix double underscore typo in display_schema javascript
  • Loading branch information
jsheunis authored Nov 14, 2023
2 parents 397ee4d + 9f88524 commit 40a722d
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 40a722d

Please sign in to comment.