+
+ {!!comments?.totalCount && (
+
+
+
+ {comments.totalCount}
+
+
+ )}
+ {dueDateOptions && (
+
+ }
+ style={{
+ padding: "0 4px",
+ marginInlineEnd: "0",
+ backgroundColor:
+ dueDateOptions.color === "default"
+ ? "transparent"
+ : "unset",
+ }}
+ color={dueDateOptions.color}
+ bordered={dueDateOptions.color !== "default"}
+ >
+ {dueDateOptions.text}
+
+ )}
+ {checkListCompletionCountOptions && (
+
+ }
+ style={{
+ padding: "0 4px",
+ marginInlineEnd: "0",
+ backgroundColor:
+ checkListCompletionCountOptions.color ===
+ "default"
+ ? "transparent"
+ : "unset",
+ }}
+ color={checkListCompletionCountOptions.color}
+ bordered={
+ checkListCompletionCountOptions.color !==
+ "default"
+ }
+ >
+ {checkListCompletionCountOptions.text}
+
+ )}
+ {!!users?.length && (
+
+ {users.map((user) => {
+ return (
+
+
+ {getNameInitials({
+ name: user.name,
+ })}
+
+
+ );
+ })}
+
+ )}
+
+