From 446457acbb76fbcb7e968285eaa252f1a396bdc6 Mon Sep 17 00:00:00 2001 From: jheer Date: Fri, 16 Feb 2024 16:15:40 -0800 Subject: [PATCH] docs: Update example fail message due to Firefox issue. --- docs/.vitepress/theme/Example.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/.vitepress/theme/Example.vue b/docs/.vitepress/theme/Example.vue index 6ab9ff78..a87ee4b2 100644 --- a/docs/.vitepress/theme/Example.vue +++ b/docs/.vitepress/theme/Example.vue @@ -27,7 +27,8 @@ export default { } catch (err) { console.error(err); if (this.$refs?.view) { - this.$refs.view.innerHTML = 'Example failed to load. 😭'; + this.$refs.view.innerHTML = 'Example failed to load. 😭
' + + 'If using Firefox, try with another browser?'; } } },