From fcf5c30c17fb37c5fa2ada3b69821f4501182cd8 Mon Sep 17 00:00:00 2001 From: Anthony Donlon Date: Thu, 20 Nov 2025 22:01:00 +0800 Subject: [PATCH] editor: remove html_title option --- editor/resources/index.html | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/editor/resources/index.html b/editor/resources/index.html index cb6eec7..8b026d1 100644 --- a/editor/resources/index.html +++ b/editor/resources/index.html @@ -43,7 +43,6 @@ // can be changed if specified by '?from=' let initialConfig = { - "html_title": "cloudflare.com | 500: Internal server error", "title": "Internal server error", "error_code": 500, @@ -169,7 +168,6 @@ /* Fill form from config */ function loadConfig(cfg) { - $('html_title').value = cfg.html_title ?? ''; $('title').value = cfg.title ?? ''; $('error_code').value = cfg.error_code ?? ''; @@ -206,7 +204,6 @@ /* Read config from form inputs */ function readConfig() { return { - html_title: $('html_title').value, title: $('title').value, error_code: Number($('error_code').value) || 0, more_information: { @@ -548,14 +545,6 @@
-
- -
- -
-
-