iticket-seatingplan-dev 1.0.35 → 1.1.1
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.
|
@@ -298,7 +298,7 @@ const SeatingPlan = _ref => {
|
|
|
298
298
|
display: 'flex',
|
|
299
299
|
flexDirection: 'column',
|
|
300
300
|
border: '2px solid rgba(0,0,0,0.2)',
|
|
301
|
-
borderRadius: '
|
|
301
|
+
borderRadius: '4px'
|
|
302
302
|
}
|
|
303
303
|
}, /*#__PURE__*/_react.default.createElement("button", {
|
|
304
304
|
title: "Re-centre Seating Plan",
|
|
@@ -306,9 +306,9 @@ const SeatingPlan = _ref => {
|
|
|
306
306
|
className: "leaflet-control-zoom-in",
|
|
307
307
|
style: {
|
|
308
308
|
border: 'none',
|
|
309
|
-
borderRadius: '
|
|
309
|
+
borderRadius: '6px 6px 0 0',
|
|
310
310
|
background: '#fff',
|
|
311
|
-
padding: '
|
|
311
|
+
padding: '8px 6px',
|
|
312
312
|
cursor: 'pointer'
|
|
313
313
|
}
|
|
314
314
|
}, /*#__PURE__*/_react.default.createElement("img", {
|
|
@@ -318,14 +318,15 @@ const SeatingPlan = _ref => {
|
|
|
318
318
|
}
|
|
319
319
|
})), /*#__PURE__*/_react.default.createElement("button", {
|
|
320
320
|
title: "Reload Seating Plan",
|
|
321
|
+
disabled: isReloading,
|
|
321
322
|
onClick: () => initialFetch(true),
|
|
322
323
|
className: "leaflet-control-zoom-in",
|
|
323
324
|
style: {
|
|
324
325
|
border: 'none',
|
|
325
|
-
borderRadius: '0 0
|
|
326
|
+
borderRadius: '0 0 6px 6px',
|
|
326
327
|
borderTop: '1px solid gray',
|
|
327
328
|
background: '#fff',
|
|
328
|
-
padding: '
|
|
329
|
+
padding: '8px 6px',
|
|
329
330
|
cursor: 'pointer',
|
|
330
331
|
background: isReloading ? 'rgb(0, 230, 64)' : '#fff'
|
|
331
332
|
}
|