@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@openeventkit/event-site",
3
3
  "description": "Event Site",
4
- "version": "2.0.77",
4
+ "version": "2.0.78",
5
5
  "author": "Tipit LLC",
6
6
  "dependencies": {
7
7
  "@mui/base": "^5.0.0-alpha.114",
@@ -140,18 +140,20 @@ export const TicketPopup = ({ ticket, order, summit, onClose, fromTicketList, fr
140
140
  </TabPanel>
141
141
  )}
142
142
 
143
- <TabPanel className="ticket-popup-panel ticket-popup-panel--edit">
144
- <div className="ticket-popup-scroll">
145
- <TicketPopupEditDetailsForm
146
- ticket={ticket}
147
- summit={summit}
148
- order={order}
149
- canEditTicketData={canEditTicketData}
150
- goToReassignPanel={() => setTabIndex(1)}
151
- context={fromTicketList ? 'ticket-list' : 'order-list'}
152
- />
153
- </div>
154
- </TabPanel>
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">