diff --git a/src/componets/SignupEventComponents/SignupEventInvitation/SignupEventInvitationRightPanel/SignupEventInvitationRightPanel.js b/src/componets/SignupEventComponents/SignupEventInvitation/SignupEventInvitationRightPanel/SignupEventInvitationRightPanel.js
index a64fe5d3ea22ad381eeb2b4908b68fd560bfd0d6..5e1b6faff2a229402f07603d4f097531229c97b6 100644
--- a/src/componets/SignupEventComponents/SignupEventInvitation/SignupEventInvitationRightPanel/SignupEventInvitationRightPanel.js
+++ b/src/componets/SignupEventComponents/SignupEventInvitation/SignupEventInvitationRightPanel/SignupEventInvitationRightPanel.js
@@ -115,7 +115,7 @@ class SignupEventInvitationRightPanel extends React.Component {
Start : {moment(startDate + " " + startTime).format("DD-MMM-YYYY hh:mm A")}
End : {moment(endDate + " " + endTime).format("DD-MMM-YYYY hh:mm A")} |
{(isShowEdit && currentEventInvitation.event.eventSlotsList.length > 1) &&
-
+ |
(stylesFunc(
@@ -314,7 +313,7 @@ class InvitationScreen extends PureComponent {
-
+
{!this.state.isUserLogin &&
@@ -394,6 +393,7 @@ class InvitationScreen extends PureComponent {
+
{eventProfileDetail.eventProfileDetail.eventSlotsList.length > 1 &&
@@ -409,6 +409,7 @@ class InvitationScreen extends PureComponent {
}
+
{this.state.isUserLogin ?
{t('eventSignup.eventSignupInvitation.addCommentHeading')}
diff --git a/src/containers/EventInvitation/InvitationScreenStyle.js b/src/containers/EventInvitation/InvitationScreenStyle.js
index c728d61b224878c85600ec22b0f0526d3c60f9d2..ae599e81a01e82b08dd683744f48abba15d4382b 100644
--- a/src/containers/EventInvitation/InvitationScreenStyle.js
+++ b/src/containers/EventInvitation/InvitationScreenStyle.js
@@ -472,5 +472,6 @@ export default (
top: 0,
overflow: "hidden",
transform: "translateY(33vh)",
- }
+ },
+ tableParent:{overflow:"auto"}
});
|