Skip to content

Commit

Permalink
handle feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ntqdinh-axonivy committed Sep 9, 2024
1 parent 2eeab04 commit c4599cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,10 @@ export class ProductDetailComponent {
}

updateProductDetailActionType(productDetail: ProductDetail) {
if (this.routingQueryParamService.isDesignerEnv()) {
this.productDetailActionType.set(ProductDetailActionType.DESIGNER_ENV);
} else if (productDetail?.sourceUrl === undefined) {
if (productDetail?.sourceUrl === undefined) {
this.productDetailActionType.set(ProductDetailActionType.CUSTOM_SOLUTION);
} else if (this.routingQueryParamService.isDesignerEnv()) {
this.productDetailActionType.set(ProductDetailActionType.DESIGNER_ENV);
} else {
this.productDetailActionType.set(ProductDetailActionType.STANDARD)
}
Expand Down
2 changes: 1 addition & 1 deletion marketplace-ui/src/assets/i18n/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ common:
source: Source
status: Status
moreInformation: More Information
contactUs: Contact Us
contactUs: Contact us
install:
buttonLabel: Install Now
buttonLabelInDesigner: Install
Expand Down

0 comments on commit c4599cd

Please sign in to comment.