-
Notifications
You must be signed in to change notification settings - Fork 16
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
Add search functionality and other QOL changes to Edge Dictionary page #36
base: main
Are you sure you want to change the base?
Conversation
@@ -8,7 +8,7 @@ | |||
<relativePath>../../../microservice-parent/pom.xml</relativePath> | |||
</parent> | |||
<artifactId>dictionary-api</artifactId> | |||
<version>4.0.5-SNAPSHOT</version> | |||
<version>4.0.5</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Has 4.0.5, been released? Typically we would change this to do the release then set it to the next snapshot.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will fix this up when merging it in.
@@ -41,9 +48,12 @@ public class DefaultEdgeDictionary extends EdgeDictionaryBase<DefaultEdgeDiction | |||
@XmlElement(name = "TotalResults") | |||
private Long totalResults = null; | |||
|
|||
public DefaultEdgeDictionary() {} | |||
public DefaultEdgeDictionary() { | |||
this.jqueryUri = "/dictionary/webjars/jquery/"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can I presume these two endpoints are available in the dictionary service?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ivakegg They are, however, the dictionary K8s/pod container needs to be running for these endpoints to work.
This PR adds the following to the Edge Dictionary page:
Closes #35