aboutsummaryrefslogtreecommitdiff
path: root/pages/search.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'pages/search.tsx')
-rw-r--r--pages/search.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/search.tsx b/pages/search.tsx
index 963fcba..e2825e8 100644
--- a/pages/search.tsx
+++ b/pages/search.tsx
@@ -32,7 +32,7 @@ function SearchResults(props: { userList: Array<userInfo> }) {
function SearchResult(props: { user: userInfo }) {
return <Vierkant style={{
padding: 12
- }} fullwidth href={`/user?id=${props.user.id}`}>
+ }} fullwidth href={"/user?id=" + props.user.id}>
<div style={{ position: "relative" }}>
<AccountAvatar size={48} dummy/>
<div style={{
@@ -55,7 +55,7 @@ function SearchBar(props: {
marginBottom: 24
}}>
<form onSubmit={props.searchFunction}>
- <Input id="searchBar" label="Zoeken voor gebruikers..." autocomplete="off" dark style={{
+ <Input id="searchBar" label="Zoeken voor gebruikers..." autocomplete="off" dark autofocus style={{
backgroundColor: "var(--background)",
color: "var(--text)",
padding: 14,