diff --git a/portal/menu-builder.html b/portal/menu-builder.html index a4cb33f..96f1004 100644 --- a/portal/menu-builder.html +++ b/portal/menu-builder.html @@ -4232,7 +4232,7 @@
${this.escapeHtml(mod.name)}
- ${mod.price > 0 ? `+$${mod.price.toFixed(2)}` : ''} + ${parseFloat(mod.price) > 0 ? `+$${parseFloat(mod.price).toFixed(2)}` : ''} ${mod.isDefault ? 'Default' : ''} ${mod.requiresSelection ? 'Required' : ''} ${mod.maxSelections > 0 ? `Max ${mod.maxSelections}` : ''} @@ -4289,7 +4289,7 @@
${this.escapeHtml(item.name)}
- $${(item.price || 0).toFixed(2)} + $${parseFloat(item.price || 0).toFixed(2)} ${hasModifiers ? `${item.modifiers.length} modifiers` : ''}