From 661873f4a44e302a1db0f121281d07171264275b Mon Sep 17 00:00:00 2001 From: Polle Pas Date: Tue, 29 Aug 2023 17:56:45 +0200 Subject: [PATCH] Fix allows only has classtype --- lib/src/populate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/populate.rs b/lib/src/populate.rs index c05884613..8270ea1a1 100644 --- a/lib/src/populate.rs +++ b/lib/src/populate.rs @@ -88,7 +88,7 @@ pub fn populate_base_models(store: &impl Storelike) -> AtomicResult<()> { allows_only: None, }, Property { - class_type: Some(urls::PROPERTY.into()), + class_type: None, data_type: DataType::ResourceArray, shortname: "allows-only".into(), description: "Restricts this Property to only the values inside this one. This essentially turns the Property into an `enum`.".into(),