Display profile name in delete confirmation
| @@ -133,7 +133,8 @@ async function deleteConnectionProfile() { | ||
| 133 | 133 | return; |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - const confirm = await Popup.show.confirm('Are you sure you want to delete the selected profile?', null); | |
| 136 | + const name = extension_settings.connectionManager.profiles[index].name; | |
| 137 | + const confirm = await Popup.show.confirm('Are you sure you want to delete the selected profile?', name); | |
| 137 | 138 | |
| 138 | 139 | if (!confirm) { |
| 139 | 140 | return; |