Jelajahi Sumber

CORE - digital forms reactivated boolean fields

Nick-PRSDigital@bitbucket.org 2 tahun lalu
induk
melakukan
ad1de2341d

+ 1 - 1
InABox.Core/DigitalForms/Layouts/Fields/DFLayoutBooleanField/DFLayoutBooleanField.cs

@@ -1,7 +1,7 @@
 namespace InABox.Core
 {
     [Caption("Boolean")]
-    public class DFLayoutBooleanField : DFLayoutField<DFLayoutBooleanFieldProperties>, IDFLayoutFormField, IDFLayoutObsoleteField
+    public class DFLayoutBooleanField : DFLayoutField<DFLayoutBooleanFieldProperties>, IDFLayoutFormField
     {
     }
 }

+ 1 - 1
InABox.Core/DigitalForms/Layouts/Fields/DFLayoutVideoField/DFLayoutVideoFieldProperties.cs

@@ -16,7 +16,7 @@ namespace InABox.Core
         }
 
         [IntegerEditor(ToolTip = "Maximum video length (sec)")]
-        public int MaximumVideoLength { get; set; } = 0
+        public int MaximumVideoLength { get; set; } = 0;
 
         [EnumLookupEditor(typeof(VideoQuality))]
         public VideoQuality Quality { get; set; } = VideoQuality.Default;