diff options
author | Ernst Widerberg <ernstwi@kth.se> | 2021-10-18 12:38:27 +0200 |
---|---|---|
committer | Ernst Widerberg <ernstwi@kth.se> | 2021-10-18 12:38:27 +0200 |
commit | fe8ec9b3f738851cacb34b17728f6f7a199c15c8 (patch) | |
tree | 422ec5cf848fd173e591821fcf3f0793d2725b48 | |
parent | ade4375fd74a40e600550edcc6c8d6fbf414b65d (diff) |
Add search options
-rw-r--r-- | src/components/SearchForm.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/SearchForm.js b/src/components/SearchForm.js index 5e8ab9f..b3a09c0 100644 --- a/src/components/SearchForm.js +++ b/src/components/SearchForm.js @@ -42,6 +42,26 @@ class SearchForm extends React.Component { key: "port", value: "port", text: "Port" + }, + { + key: "domain", + value: "domain", + text: "Domain" + }, + { + key: "ip", + value: "ip", + text: "IP" + }, + { + key: "asn", + value: "asn", + text: "ASN" + }, + { + key: "asn_country_code", + value: "asn_country_code", + text: "ASN Country Code" } ]; return ( |