From 654e78b7c50c5f30e5b82304ac811e80e78c7346 Mon Sep 17 00:00:00 2001 From: Alex X Date: Sat, 27 Dec 2025 12:34:08 +0300 Subject: [PATCH] Add suggest button to config editor --- www/config.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/www/config.html b/www/config.html index 47640957..fe84275c 100644 --- a/www/config.html +++ b/www/config.html @@ -23,6 +23,7 @@
+
@@ -1198,6 +1199,10 @@ } }); + document.getElementById('suggest').addEventListener('click', () => { + editor.trigger('source', 'editor.action.triggerSuggest', {}); + }); + (async () => { try { const r = await fetch('https://go2rtc.org/schema.json', {cache: 'no-cache'});