From 8a57e3c9ff10f1c1620fc7c7fb7dc6b277ecc642 Mon Sep 17 00:00:00 2001 From: kirsty-hames Date: Tue, 30 Jan 2024 09:36:18 +0000 Subject: [PATCH] Fix: Title is required to set notify popup dialog label (fixes #107) (#108) --- properties.schema | 2 +- schema/course.schema.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/properties.schema b/properties.schema index 55cd877..a553069 100644 --- a/properties.schema +++ b/properties.schema @@ -94,7 +94,7 @@ }, "title": { "type": "string", - "required": false, + "required": true, "default": "Accessibility Controls", "title": "Popup title text", "inputType": "Text", diff --git a/schema/course.schema.json b/schema/course.schema.json index 804911c..7a0ccde 100644 --- a/schema/course.schema.json +++ b/schema/course.schema.json @@ -77,6 +77,9 @@ "type": "object", "title": "Visua11y", "default": {}, + "required": [ + "title" + ], "properties": { "_isEnabled": { "type": "boolean",