mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-04-05 21:40:12 +02:00
Merge branch 'dev' for release 6.3.47
This commit is contained in:
commit
90994d539b
@ -2,6 +2,10 @@
|
||||
|
||||
## Next release
|
||||
|
||||
## v6.3.47 2025 Avril 1
|
||||
|
||||
- Fix a bug: unable to hide machine/space deleted in price of plan
|
||||
|
||||
## v6.3.46 2025 March 31
|
||||
|
||||
- Fix a bug: unable to cancel stripe subscription canceled
|
||||
|
@ -71,7 +71,7 @@ export const PlanPricingForm = <TContext extends object>({ register, control, fo
|
||||
const renderPriceElement = (price: Price, index: number) => {
|
||||
const item: Space | Machine = (price.priceable_type === 'Machine' && machines?.find(m => m.id === price.priceable_id)) ||
|
||||
(price.priceable_type === 'Space' && spaces?.find(s => s.id === price.priceable_id));
|
||||
if (!item?.disabled) {
|
||||
if (item && !item.disabled) {
|
||||
return (
|
||||
<div key={price.id}>
|
||||
<FormInput register={register}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "fab-manager",
|
||||
"version": "6.3.46",
|
||||
"version": "6.3.47",
|
||||
"description": "Fab-manager is the FabLab management solution. It provides a comprehensive, web-based, open-source tool to simplify your administrative tasks and your marker's projects.",
|
||||
"keywords": [
|
||||
"fablab",
|
||||
|
Loading…
x
Reference in New Issue
Block a user