Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
fix(analysis/edit): Remove extra >
Browse files Browse the repository at this point in the history
  • Loading branch information
Akanksh Saxena committed Sep 15, 2021
1 parent fa6a45e commit 891a0f4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions app/analysis/edit/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
</label>
<t.task />
</div>
</f.input>>
</f.input>

<f.input
data-test-comment
Expand All @@ -93,7 +93,7 @@
onchange={{action fi.update value='target.value'}}
value={{fi.value}}
>
</f.input>>
</f.input>

<f.input
data-test-not-billable
Expand All @@ -111,8 +111,8 @@
{{#unless (eq f.model.notBillable model.notBillable)}}
<ChangedWarning />
{{/unless}}
</SyCheckbox>>
</f.input>>
</SyCheckbox>
</f.input>

<f.input
data-test-review
Expand All @@ -130,8 +130,8 @@
{{#unless (eq f.model.review model.review)}}
<ChangedWarning />
{{/unless}}
</SyCheckbox>>
</f.input>>
</SyCheckbox>
</f.input>

<f.input
data-test-billed
Expand All @@ -151,8 +151,8 @@
{{#unless (eq f.model.billed model.billed)}}
<ChangedWarning />
{{/unless}}
</SyCheckbox>>
</f.input>>
</SyCheckbox>
</f.input>

<f.input
data-test-verified
Expand All @@ -172,15 +172,15 @@
{{#unless (eq f.model.verified model.verified)}}
<ChangedWarning />
{{/unless}}
</SyCheckbox>>
</f.input>>
</SyCheckbox>
</f.input>

<div class="text-right">
<button data-test-cancel type="button" class="btn" {{action 'cancel'}}>Cancel</button>
<button data-test-reset type="button" class="btn" {{action (queue t.reset (action 'reset' f.model))}}>Reset</button>
<f.submit />
</div>
</TaskSelection>>
</TaskSelection>
</ValidatedForm>
{{/let}}
</div>
Expand Down

0 comments on commit 891a0f4

Please sign in to comment.