From d492e3dd0b65e405ebfbcf03f7bbec36bd72b6e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciar=C3=A1n=20Ainsworth?= Date: Mon, 26 Sep 2022 23:13:26 +0000 Subject: [PATCH] Make unsupported type error message clearer --- front/public/embed.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/public/embed.html b/front/public/embed.html index 1c604beb3..f226161b8 100644 --- a/front/public/embed.html +++ b/front/public/embed.html @@ -27,7 +27,7 @@ // Error let error = reactive({ value: false }) if (!SUPPORTED_TYPES.includes(type)) { - error.value = `Widget improperly configured (bad resource type "${type}").` + error.value = `The embed widget doesn't support this media type: ${type}.` } if (id === null || isNaN(+id)) {