-
-
{action.title}
-
- {priorityLabels[action.priority]}
-
-
- {action.description && (
-
{action.description}
- )}
-
- {action.links.map((link) => (
-
- {categoryShort[link.swotItem.category]}
-
- ))}
-
-
-
-
+ {/* Header with title & actions */}
+
+
{action.title}
+
-
+
+ {/* Description */}
+ {action.description && (
+
{action.description}
+ )}
+
+ {/* Linked Items */}
+
+ {action.links.map((link) => (
+
+
+ {link.swotItem.content.length > 25
+ ? link.swotItem.content.slice(0, 25) + '...'
+ : link.swotItem.content}
+
+
+ ))}
+
+
+ {/* Footer with status & priority */}
+
+
+ {priorityLabels[action.priority]}
+
+
+