From 108aae329ca6bf79854bace2670d6a41f3ad3b7c Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Sat, 30 Sep 2023 11:58:21 +0200 Subject: [PATCH] Change symbol for subform --- src/model/data_form.rs | 2 +- src/model/unterformular.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/model/data_form.rs b/src/model/data_form.rs index 57c3cd6..15e1f4f 100644 --- a/src/model/data_form.rs +++ b/src/model/data_form.rs @@ -356,7 +356,7 @@ impl Requires for DataForm { | Requirement::ExternalDataFormSubform(_) | Requirement::UnterformularSubform(_) | Requirement::ExternalUnterformularSubform(_) => { - Some(format!(" $ {}\n", entry.to_string())) + Some(format!(" * {}\n", entry.to_string())) } _ => None, }) diff --git a/src/model/unterformular.rs b/src/model/unterformular.rs index 823bd12..2901ae6 100644 --- a/src/model/unterformular.rs +++ b/src/model/unterformular.rs @@ -359,7 +359,7 @@ impl Requires for Unterformular { | Requirement::ExternalDataFormSubform(_) | Requirement::UnterformularSubform(_) | Requirement::ExternalUnterformularSubform(_) => { - Some(format!(" $ {}\n", entry.to_string())) + Some(format!(" * {}\n", entry.to_string())) } _ => None, })