@openeventkit/event-site 2.0.77 → 2.0.78
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
CHANGED
|
@@ -140,18 +140,20 @@ export const TicketPopup = ({ ticket, order, summit, onClose, fromTicketList, fr
|
|
|
140
140
|
</TabPanel>
|
|
141
141
|
)}
|
|
142
142
|
|
|
143
|
-
|
|
144
|
-
<
|
|
145
|
-
<
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
143
|
+
{!isUnassigned && (
|
|
144
|
+
<TabPanel className="ticket-popup-panel ticket-popup-panel--edit">
|
|
145
|
+
<div className="ticket-popup-scroll">
|
|
146
|
+
<TicketPopupEditDetailsForm
|
|
147
|
+
ticket={ticket}
|
|
148
|
+
summit={summit}
|
|
149
|
+
order={order}
|
|
150
|
+
canEditTicketData={canEditTicketData}
|
|
151
|
+
goToReassignPanel={() => setTabIndex(1)}
|
|
152
|
+
context={fromTicketList ? 'ticket-list' : 'order-list'}
|
|
153
|
+
/>
|
|
154
|
+
</div>
|
|
155
|
+
</TabPanel>
|
|
156
|
+
)}
|
|
155
157
|
|
|
156
158
|
{!isUnassigned && isReassignable && isUserOrderOwner && (
|
|
157
159
|
<TabPanel className="ticket-popup-panel ticket-popup-panel--reassign">
|