From 93f67bbacb8e6672e96662b5ae63550479012e87 Mon Sep 17 00:00:00 2001 From: pinual Date: Fri, 24 Sep 2021 18:31:04 -0400 Subject: [PATCH] TextAreas under Interactions Character Detail --- Views/Characters/Details.cshtml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Views/Characters/Details.cshtml b/Views/Characters/Details.cshtml index d5cc49e..404eefc 100644 --- a/Views/Characters/Details.cshtml +++ b/Views/Characters/Details.cshtml @@ -73,6 +73,8 @@ var affected = ((Dictionary)ViewData["CharacterGuidToName"])[interaction.AffectedCharacter1];

@affected

} -
@interaction.Explanation
+
+ @Html.TextArea("Explanation", interaction.Explanation, new { @class = "form-control", @rows = 8, @readonly = "readonly" }) +
} } \ No newline at end of file