fix(proxy_server.py): fix /config/update/

allows updating router config via UI and having the change be propogated across all proxy instances by persisting config changes to the db
This commit is contained in:
Krrish Dholakia 2024-04-24 16:42:42 -07:00
parent bae6f41017
commit f54510b6ee
6 changed files with 50 additions and 90 deletions

View file

@ -125,7 +125,7 @@ const GeneralSettings: React.FC<GeneralSettingsPageProps> = ({
</TableRow>
</TableHead>
<TableBody>
{Object.entries(routerSettings).map(([param, value]) => (
{Object.entries(routerSettings).filter(([param, value]) => param != "fallbacks" && param != "context_window_fallbacks").map(([param, value]) => (
<TableRow key={param}>
<TableCell>
<Text>{param}</Text>