Skip to content

Commit

Permalink
fix: storage path input broken
Browse files Browse the repository at this point in the history
  • Loading branch information
macjuul committed Apr 25, 2024
1 parent c176097 commit 3f2946b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Scaffold/settings/tabs/Serving.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function ServingTab() {
label={isFileDriver ? "Storage path" : "Storage cluster address"}
placeholder={isFileDriver ? "/path/to/database" : "address:port"}
value={storage}
onChange={setStorage as any}
onChange={e => setStorage(e.target.value)}
/>
)}

Expand Down

0 comments on commit 3f2946b

Please sign in to comment.