Skip to content

Commit 353737d

Browse files
authored
Fixes #1288 Improved behavior of Version completion of Mark Fixed. Also fixed bug where version might not be saved. (#1381)
1 parent 5d02860 commit 353737d

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/Exceptionless.Web/ClientApp/components/stack-dialog/mark-fixed-dialog.tpl.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
<form name="vm.markFixedForm" role="form" class="form-validation" autocomplete="on">
1+
<form
2+
name="vm.markFixedForm"
3+
role="form"
4+
class="form-validation"
5+
autocomplete="on"
6+
ng-submit="vm.save(vm.markFixedForm.$valid)"
7+
>
28
<div class="modal-header dialog-header-confirm">
39
<button type="button" role="button" class="close" ng-click="vm.cancel()">&times;</button>
410
<h4 class="modal-title">
@@ -33,7 +39,7 @@ <h4 class="modal-title">
3339
class="form-control input-lg"
3440
placeholder="{{::'Optional Version (Example: 1.2.3)' | translate}}"
3541
ng-model="vm.data.version"
36-
ng-model-options="{ debounce: 500 }"
42+
ng-model-options="{ debounce: 1000 }"
3743
semver
3844
semantic-version-validator
3945
autofocus
@@ -57,7 +63,6 @@ <h4 class="modal-title">
5763
type="submit"
5864
role="button"
5965
class="btn btn-primary btn-dialog-confirm"
60-
ng-click="vm.save(vm.markFixedForm.$valid)"
6166
value="{{::'Mark Fixed' | translate}}"
6267
/>
6368
</div>

0 commit comments

Comments
 (0)