rename instances into replicas
This commit is contained in:
parent
ba64d24c7a
commit
33e8f2152a
2 changed files with 6 additions and 6 deletions
|
@ -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 = '';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue