Skip to content
Snippets Groups Projects
Commit e12372fe authored by Nico Vermaas's avatar Nico Vermaas
Browse files

Merge branch 'voutsinas-issue-1' into 'master'

Changes to the JS code to enable the keyword search textfield

See merge request !7

(cherry picked from commit 2cfcc52a)

329a0e89 Changes to the JS code to enable the keyword search textfield
parent 09b79d28
Branches
No related tags found
2 merge requests!9merge esap-gui-dev into master,!8Cherry picking 'keyword search' from voutsinas branch into dev branch
version: '3'
networks:
esap_net:
services:
esap_api:
image:
"esap_api:latest"
read_only:
false
volumes:
- /data/shared:/shared
networks:
- esap_net
ports:
- "8005:8005"
my_nginx:
image:
"my_nginx:latest"
read_only:
false
volumes:
- /data/shared:/shared
- /data/shared:/etc/nginx/conf.d/
- /data/shared/static:/static
networks:
- esap_net
ports:
- "80:80"
depends_on:
- esap_api
......@@ -101,6 +101,15 @@ export default function QueryArchives(props) {
queryToStore[key]=value
}
if (formData.keyword) {
key = "keyword"
value = formData.keyword.trim()
query = query + "&" + key + "=" + value
queryToStore[key]=value
}
if (formData.target) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment