@nualang/nualang-ui-components 0.1.1308 → 0.1.1309
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -115,6 +115,7 @@ export default function RecordingCard({
|
|
|
115
115
|
},
|
|
116
116
|
children: [/*#__PURE__*/_jsx(AvatarGroup, {
|
|
117
117
|
max: 4,
|
|
118
|
+
spacing: -3,
|
|
118
119
|
sx: {
|
|
119
120
|
display: "flex",
|
|
120
121
|
"& .MuiAvatar-root": {
|
|
@@ -132,6 +133,7 @@ export default function RecordingCard({
|
|
|
132
133
|
}, attendee?.memberId))
|
|
133
134
|
}), notAttendedMembers.length > 0 && /*#__PURE__*/_jsx(AvatarGroup, {
|
|
134
135
|
max: 4,
|
|
136
|
+
spacing: -3,
|
|
135
137
|
sx: {
|
|
136
138
|
display: "flex",
|
|
137
139
|
ml: 2,
|
|
@@ -991,26 +991,31 @@ function Classroom({
|
|
|
991
991
|
pt: "8px",
|
|
992
992
|
children: [/*#__PURE__*/_jsx("div", {
|
|
993
993
|
className: classes.grow
|
|
994
|
-
}), /*#__PURE__*/
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
994
|
+
}), /*#__PURE__*/_jsxs(Box, {
|
|
995
|
+
sx: {
|
|
996
|
+
display: "flex",
|
|
997
|
+
alignItems: "center",
|
|
998
|
+
justifyContent: "space-between",
|
|
999
|
+
mb: 2
|
|
1000
|
+
},
|
|
1001
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
|
1002
|
+
variant: "headline",
|
|
1003
|
+
color: "inherit",
|
|
1004
|
+
fontSize: 24,
|
|
1005
|
+
children: t("discussions")
|
|
1006
|
+
}), /*#__PURE__*/_jsx(Tooltip, {
|
|
1007
|
+
title: t("refresh_discuss"),
|
|
1008
|
+
placement: "left",
|
|
1009
|
+
children: /*#__PURE__*/_jsx(IconButton, {
|
|
1003
1010
|
size: "large",
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
children: /*#__PURE__*/_jsx(Refresh, {
|
|
1011
|
-
fontSize: "inherit"
|
|
1011
|
+
"aria-label": "Refresh",
|
|
1012
|
+
onClick: refetchData,
|
|
1013
|
+
id: "discussRefreshScheduled",
|
|
1014
|
+
children: /*#__PURE__*/_jsx(Refresh, {
|
|
1015
|
+
fontSize: "inherit"
|
|
1016
|
+
})
|
|
1012
1017
|
})
|
|
1013
|
-
})
|
|
1018
|
+
})]
|
|
1014
1019
|
}), /*#__PURE__*/_jsx(_Fragment, {
|
|
1015
1020
|
children: isCreator && createdDiscussions?.length > 0 && /*#__PURE__*/_jsx("div", {
|
|
1016
1021
|
id: "discussGroupedDiscussions",
|