From f70390d585637d9e1ebfde4474e2aeb89e652e43 Mon Sep 17 00:00:00 2001 From: Tom Hicks Date: Thu, 25 Mar 2021 16:56:31 -0700 Subject: [PATCH] Fixes the display of the actions label. --- MonsterCards/Views/MonsterDetail.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MonsterCards/Views/MonsterDetail.swift b/MonsterCards/Views/MonsterDetail.swift index 03165ee..da93214 100644 --- a/MonsterCards/Views/MonsterDetail.swift +++ b/MonsterCards/Views/MonsterDetail.swift @@ -259,8 +259,9 @@ struct MonsterDetail: View { // Actions if (monsterActions.count > 0) { - VStack { + VStack(alignment: .leading) { Text("Actions") + .fontWeight(.bold) ForEach(monsterActions) { action in VStack { Markdown(Document(action.renderedText(monster)))