Skip to content

feat(web.zone): add dns server section for zone standalone #16859

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ghyenne
Copy link
Contributor

@ghyenne ghyenne commented Apr 30, 2025

Description

I reuse the existing code for zone attached to domain

Ticket Reference: #MANAGER-13869

Additional Information

ref: #MANAGER-13869

Signed-off-by: Guillaume Hyenne <guillaume.hyenne@ovhcloud.com>
@ghyenne ghyenne requested a review from a team as a code owner April 30, 2025 13:52
Comment on lines +65 to +68
const promise =
this.currentSection === 'domain'
? [this.getDomain(), this.hasAnycast(), this.getDns()]
: [this.getDns()];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
const promise =
this.currentSection === 'domain'
? [this.getDomain(), this.hasAnycast(), this.getDns()]
: [this.getDns()];
const promises =
this.currentSection === 'domain'
? [this.getDomain(), this.hasAnycast(), this.getDns()]
: [this.getDns()];

return this.$q
.all([this.getDomain(), this.hasAnycast(), this.getDns()])
.all(promise)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
.all(promise)
.all(promises)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants