-
Notifications
You must be signed in to change notification settings - Fork 98
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
fix(web.hosting): fix the order of web cloud database #9734
Conversation
...apps/web/client/app/hosting/database/order/public/hosting-database-order-public.constants.js
Show resolved
Hide resolved
15389b2
to
4ddcdad
Compare
] = this.model.dbCategory.selectVersion.configurations.find( | ||
(item) => item.name === DATACENTER_CONFIGURATION_KEY, | ||
).values; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
] = this.model.dbCategory.selectVersion.configurations.find( | |
(item) => item.name === DATACENTER_CONFIGURATION_KEY, | |
).values; | |
] = this.model.dbCategory.selectVersion.configurations.find( | |
(item) => item.name === DATACENTER_CONFIGURATION_KEY, | |
)?.values; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's fixed
...pps/web/client/app/hosting/database/order/public/hosting-database-order-public.controller.js
Show resolved
Hide resolved
...pps/web/client/app/hosting/database/order/public/hosting-database-order-public.controller.js
Show resolved
Hide resolved
: ''; | ||
} | ||
|
||
getOnGetConfiguration() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getOnGet ? the function name is not very clear
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just add get begining the name of object required by product offer module
packages/manager/modules/product-offers/src/workflows/product-offers-order-workflow.class.js
Show resolved
Hide resolved
packages/manager/modules/product-offers/src/workflows/product-offers-order-workflow.class.js
Show resolved
Hide resolved
packages/manager/modules/product-offers/src/workflows/product-offers-order-workflow.class.js
Show resolved
Hide resolved
isFunction(this.productName) | ||
? this.productName() | ||
: this.productName, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitpick: This is pretty confusing. Can we just maintain this.productName
to be always string.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In fact i need to have something to dynamic. Because in my order funnel database the all type of database haven't same product name and one need service name because is an option other no because is individual service.
ref: MANAGER-11651 Signed-off-by: Guillaume Hyenne <[email protected]>
4ddcdad
to
4540328
Compare
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
master
Only FR translations have been updatedBreaking change is mentioned in relevant commitsDescription
I fixed the order of web cloud database
Related