rename instances into replicas

This commit is contained in:
Tobias Brunner 2025-07-11 16:58:30 +02:00
parent ba64d24c7a
commit 33e8f2152a
No known key found for this signature in database
2 changed files with 6 additions and 6 deletions

View file

@ -1834,11 +1834,11 @@ Please contact me with next steps for ordering this configuration.`;
}
// Override the updateAddonPricingDisplay method to use improved layout
PriceCalculator.prototype.updateAddonPricingDisplay = function(mandatoryAddons, selectedOptionalAddons) {
PriceCalculator.prototype.updateAddonPricingDisplay = function (mandatoryAddons, selectedOptionalAddons) {
// Handle mandatory addons - show them in the managed service includes section
if (this.managedServiceIncludesContainer) {
this.managedServiceIncludesContainer.innerHTML = '';
if (mandatoryAddons && mandatoryAddons.length > 0) {
mandatoryAddons.forEach(addon => {
const addonRow = document.createElement('div');
@ -1862,7 +1862,7 @@ PriceCalculator.prototype.updateAddonPricingDisplay = function(mandatoryAddons,
// Handle optional addons - show them in the main addon pricing container
if (!this.addonPricingContainer) return;
// Clear existing addon pricing display (only for optional addons now)
this.addonPricingContainer.innerHTML = '';