Skip to content

Commit

Permalink
create instance open model condition change (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohandholu43 authored Jan 21, 2025
1 parent f0ad6e2 commit 111266e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pages/access/service/[serviceId].js
Original file line number Diff line number Diff line change
Expand Up @@ -955,11 +955,13 @@ function MarketplaceService() {

for (const param of schemaArray) {
if (["custom_dns_configuration"].includes(param.key)) {
if (data.requestParams.custom_dns_configuration) {
setIsCustomDNS(true);
}
const resourceKey = selectedResource.key;
data.requestParams.custom_dns_configuration = {
[resourceKey]: data.requestParams.custom_dns_configuration,
};
setIsCustomDNS(true);
}
}

Expand Down

0 comments on commit 111266e

Please sign in to comment.