Skip to content

Commit

Permalink
Fix save template
Browse files Browse the repository at this point in the history
  • Loading branch information
PhoenixNazarov committed Oct 23, 2024
1 parent 3874fc6 commit ecf3488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/promptadmin_server/api/routers/vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ async def remove(var_key_dto: VarKeyDto, user_data: UserDependsAnnotated):
@router.post("/change")
async def change(var_dto: VarDto, user_data: UserDependsAnnotated):
return await permission_var_service.change(
var_dto.project, var_dto.key, var_dto.project, user_data
var_dto.project, var_dto.key, var_dto.value, user_data
)

0 comments on commit ecf3488

Please sign in to comment.