Skip to content

Commit

Permalink
Fix lookup on regular id instead of fullId
Browse files Browse the repository at this point in the history
  • Loading branch information
palexander committed Apr 20, 2012
1 parent c39b073 commit 17cb194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/mappings_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def get_concept_table
@ontology = DataAccess.getOntology(params[:ontologyid])
@concept = DataAccess.getNode(@ontology.id, params[:conceptid])

@mappings = DataAccess.getConceptMappings(@ontology.ontologyId, @concept.id)
@mappings = DataAccess.getConceptMappings(@ontology.ontologyId, @concept.fullId)

# check to see if user should get the option to delete
@delete_mapping_permission = check_delete_mapping_permission(@mappings)
Expand Down

0 comments on commit 17cb194

Please sign in to comment.