Skip to content

Commit

Permalink
Fix bug in getting the template repository URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Goncalo Rolo authored and goncalorolo committed Apr 19, 2023
1 parent 1925fcc commit e562edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imports/ui/components/Services/ServiceCreation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@
if(this.steps[detailsStepIndex].fields.architecturalPattern.value !== "NONE"){
const framework = this.getFramework("value", this.steps[detailsStepIndex].fields.framework.value);
const queryParams = {
framework: framework.text.replace(" ", "_").replace(".", ""),
framework: framework.text.replaceAll(" ", "_").replaceAll(".", ""),
pattern: this.steps[detailsStepIndex].fields.architecturalPattern.value
};

Expand Down

0 comments on commit e562edd

Please sign in to comment.