From e5e9175e7dac53b81ba79d350f4a751bc72a2a53 Mon Sep 17 00:00:00 2001 From: Robert van Hoesel Date: Wed, 12 Jan 2022 18:46:23 +0100 Subject: [PATCH] Use boolean instead of string in example --- content/mobile-support.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/mobile-support.md b/content/mobile-support.md index 09ce7cc..37a6be0 100644 --- a/content/mobile-support.md +++ b/content/mobile-support.md @@ -25,6 +25,6 @@ If you'd like to disable native datetime inputs in all cases (not recommended), ```js { - disableMobile: "true" + disableMobile: true } -``` \ No newline at end of file +```