Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
Add the render of the conf_list after a deletion in order to don't pr…
Browse files Browse the repository at this point in the history
…int the deleted service
  • Loading branch information
Isnubi committed Feb 28, 2024
1 parent 6617bb7 commit 8d2f8b7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docker/web-manager/blueprints/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ def manage():
return render_template('manage.html', conf_list=conf_list, conf_infos=conf_infos)
elif action == 'delete':
handler.remove_conf(conf_name)
conf_list = handler.get_conf_list()
return render_template('manage.html', conf_list=conf_list)
elif action == 'edit':
return render_template('manage.html', conf_list=conf_list,
Expand Down

0 comments on commit 8d2f8b7

Please sign in to comment.