Skip to content

Commit

Permalink
86939z56j: Fix type error and typo (syntax error)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomolopolis committed Dec 8, 2023
1 parent 4bf6ec6 commit a53be1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/frontend/src/components/common/ConceptPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default {
},
props: {
restrict_concept_lookup: Boolean,
cui_filter: Array,
cui_filter: String,
cdb_search_filter: Array,
concept_db: Number,
selection: String
Expand Down
2 changes: 1 addition & 1 deletion webapp/frontend/src/views/TrainAnnotations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ export default {
},
addAnnotationComplete (addedAnnotationId) {
this.conceptSynonymSelection = null
if (addedAnnotationId) {f
if (addedAnnotationId) {
this.$http.get(`/api/annotated-entities/${addedAnnotationId}/`).then(resp => {
let newEnt = resp.data
newEnt.assignedValues = {}
Expand Down

0 comments on commit a53be1a

Please sign in to comment.