Commit 6cff9685 authored by Venkaiah Naidu Singamchetty's avatar Venkaiah Naidu Singamchetty

Merge branch 'apiserver' into 'master'

trimeed the searched

See merge request !74
parents aeb0959b 6cc0543e
...@@ -32,7 +32,7 @@ function LeftSidebar() { ...@@ -32,7 +32,7 @@ function LeftSidebar() {
}, [inputValue]); }, [inputValue]);
const handleChange = (event) => { const handleChange = (event) => {
setInputValue(event.target.value); setInputValue(event.target.value.trim());
}; };
useEffect(() => { useEffect(() => {
......
...@@ -67,7 +67,7 @@ function Dashboard() { ...@@ -67,7 +67,7 @@ function Dashboard() {
}, [inputValue]); }, [inputValue]);
const handleChange = (event) => { const handleChange = (event) => {
setInputValue(event.target.value); setInputValue(event.target.value.trim());
}; };
const headers = [ const headers = [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment