-
Notifications
You must be signed in to change notification settings - Fork 154
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
Problems if multiple entities have the same label #1559
Comments
reckart
added a commit
that referenced
this issue
Dec 11, 2019
- Fixes issue of items with the same label being confused by frontend and backend by using IRI as an identifier - Improve performance of linking an entity by not fetching the choices again if we still have them from filling the dropdown - Avoid sending redundant data to the UI - Add area with entity description below the entity linking field
reckart
added a commit
that referenced
this issue
Dec 12, 2019
- Pull code which is only required for the concept feature editor into the that one creating an inner class with additional modifications of the KnowledgeBaseItemAutoCompleteField - Leave generic code not in the KnowledgeBaseItemAutoCompleteField so that it can be used on the KB page for the search field and for the IRI value editor - Removed unused dependency
reckart
added a commit
that referenced
this issue
Dec 12, 2019
…if-multiple-entities-have-the-same-label #1559 - Problems if multiple entities have the same label
reckart
added a commit
that referenced
this issue
Dec 17, 2019
* master: (21 commits) No issue. Mention update of demo server. No issue. Mention update of demo server #1567 - Cache knowledge base query results Revert "#1567 - Cache knowledge base query results" #1567 - Cache knowledge base query results #1567 - Cache knowledge base query results #1563 - Allow configuring concept feature for properties #1565 - Some fontawesome glyphs are no longer visible #1563 - Allow configuring concept feature for properties No issue. Removed unused dependency. #1561 - Ranking is off if there is no mention to work with #1559 - Problems if multiple entities have the same label #1559 - Problems if multiple entities have the same label No issue - FeatureEditors should handle their updates themselves #1517 - Description of KB items is cut in the concept editor #1517 - Description of KB items is cut in the concept editor #1517 - Description of KB items is cut in the concept editor #1549 - Filter entity candidates by description #1549 - Filter entity candidates by description No issue. Add info about CSRF and how to configure the JAR version when running behind nginx. ... % Conflicts: % inception-concept-linking/src/main/java/de/tudarmstadt/ukp/inception/conceptlinking/ranking/BaselineRankingStrategy.java % inception-concept-linking/src/main/java/de/tudarmstadt/ukp/inception/conceptlinking/service/ConceptLinkingServiceImpl.java % inception-kb/src/main/java/de/tudarmstadt/ukp/inception/kb/querybuilder/SPARQLQueryBuilder.java % inception-ui-kb/src/main/java/de/tudarmstadt/ukp/inception/ui/kb/feature/ConceptFeatureEditor.java % inception-ui-kb/src/main/java/de/tudarmstadt/ukp/inception/ui/kb/feature/KnowledgeBaseItemAutoCompleteField.java
jcklie
pushed a commit
that referenced
this issue
Feb 2, 2021
…ions-of-another-user-updates-CAS #1558 - Opening the annotations of another user updates CAS
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
The KB autocomplete field fails to send the right selection to the backend if multiple items in the dropdown list have the same label. This is because the Kendo auto-complete JS code assumes that every item has a different label and otherwise does not properly trigger change events amongst other problems. But also the Wicket KendoAutoComplete backend code makes the same assumption and selects the always the first item with the given label.
To Reproduce
Steps to reproduce the behavior:
Chicago
Expected behavior
The frontend should send the IRI of the concept back to the server and the server should use that to make the selection.
Please complete the following information:
Additional context
The text was updated successfully, but these errors were encountered: