@openeventkit/event-site 2.0.85 → 2.0.87
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.
- package/package.json +2 -2
- package/src/components/MyOrdersTicketsComponent.js +2 -2
- package/src/components/RegistrationLiteComponent.js +2 -2
- package/src/components/summit-my-orders-tickets/components/TicketPopup/TicketPopupEditDetailsForm/ticket-popup-edit-details-form.scss +1 -0
- package/src/styles/extra-questions.module.scss +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openeventkit/event-site",
|
|
3
3
|
"description": "Event Site",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.87",
|
|
5
5
|
"author": "Tipit LLC",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@mui/base": "^5.0.0-alpha.114",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"netlify-cms-app": "^2.15.72",
|
|
79
79
|
"netlify-cms-lib-widgets": "^1.8.0",
|
|
80
80
|
"node-sass-utils": "^1.1.3",
|
|
81
|
-
"openstack-uicore-foundation": "4.1.
|
|
81
|
+
"openstack-uicore-foundation": "4.1.65",
|
|
82
82
|
"path-browserify": "^1.0.1",
|
|
83
83
|
"prop-types": "^15.6.0",
|
|
84
84
|
"react": "^18.2.0",
|
|
@@ -19,7 +19,7 @@ export const MyOrdersTicketsComponent = () => {
|
|
|
19
19
|
apiBaseUrl: getEnvVariable(SUMMIT_API_BASE_URL),
|
|
20
20
|
clientId: getEnvVariable(OAUTH2_CLIENT_ID),
|
|
21
21
|
idpBaseUrl: getEnvVariable(IDP_BASE_URL),
|
|
22
|
-
supportEmail: getEnvVariable(SUPPORT_EMAIL),
|
|
22
|
+
supportEmail: summit.support_email || getEnvVariable(SUPPORT_EMAIL),
|
|
23
23
|
loginUrl: '/',
|
|
24
24
|
getAccessToken,
|
|
25
25
|
getUserProfile: async () => await dispatch(getUserProfile()),
|
|
@@ -33,4 +33,4 @@ export const MyOrdersTicketsComponent = () => {
|
|
|
33
33
|
<MyOrdersTicketsWidget {...widgetProps} />
|
|
34
34
|
</Sentry.ErrorBoundary>
|
|
35
35
|
);
|
|
36
|
-
};
|
|
36
|
+
};
|
|
@@ -149,7 +149,7 @@ const RegistrationLiteComponent = ({
|
|
|
149
149
|
goToEvent: () => navigate("/a/"),
|
|
150
150
|
goToRegistration: () => navigate(`${getEnvVariable(REGISTRATION_BASE_URL)}/a/${summit.slug}`),
|
|
151
151
|
goToMyOrders: () => navigate("/a/my-tickets"),
|
|
152
|
-
completedExtraQuestions: async (attendee) => {
|
|
152
|
+
completedExtraQuestions: async (attendee) => {
|
|
153
153
|
if(!attendee) return true;
|
|
154
154
|
await getExtraQuestions(attendee?.id);
|
|
155
155
|
return checkRequireExtraQuestionsByAttendee(attendee);
|
|
@@ -178,7 +178,7 @@ const RegistrationLiteComponent = ({
|
|
|
178
178
|
},
|
|
179
179
|
allowPromoCodes: allowPromoCodes,
|
|
180
180
|
companyDDLPlaceholder: companyDDLPlaceholder,
|
|
181
|
-
supportEmail: getEnvVariable(SUPPORT_EMAIL),
|
|
181
|
+
supportEmail: summit.support_email || getEnvVariable(SUPPORT_EMAIL),
|
|
182
182
|
initialOrderComplete1stParagraph: initialOrderComplete1stParagraph,
|
|
183
183
|
initialOrderComplete2ndParagraph: initialOrderComplete2ndParagraph,
|
|
184
184
|
initialOrderCompleteButton: initialOrderCompleteButton,
|