Skip to content

Commit

Permalink
fix(spelling): improve clarity of edit view form title
Browse files Browse the repository at this point in the history
  • Loading branch information
faeller committed Aug 31, 2022
1 parent acd9f5e commit 179a6eb
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/pages/EditView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,7 @@ const toCombustionScript = (formData) => {
let json = { combustion: "" };
formComponents
.filter(
(comp) =>
comp.methods.hasOwnProperty("encodeToIgn") &&
comp.__file.includes("Comb") // probably need to replace it
)
.filter((comp) => comp.methods.hasOwnProperty("encodeToIgn"))
.forEach((comp) => comp.methods.encodeToIgn(json, formData));
if (json.combustion !== "") {
Expand Down Expand Up @@ -119,14 +115,14 @@ const toCombustionScript = (formData) => {
</ExpandableComponent>

<ExpandableComponent
title="Start Services"
title="Enable or Create Services"
:displayAtLeastOne="false"
>
<StartServiceForm></StartServiceForm>
</ExpandableComponent>

<ExpandableComponent
title="Modify Services"
title="Modify Existing Services"
:displayAtLeastOne="false"
>
<ModifyServiceForm></ModifyServiceForm>
Expand Down

0 comments on commit 179a6eb

Please sign in to comment.