You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by an...@apache.org on 2019/09/05 13:40:59 UTC

[incubator-dlab] 02/02: [DLAB-984]: added error message in case of project starting issues

This is an automated email from the ASF dual-hosted git repository.

ankovalyshyn pushed a commit to branch DLAB-1044
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit 5443d069aa684fbd1040b236a73898c28c2ff549
Author: Andriana Kovalyshyn <An...@epam.com>
AuthorDate: Thu Sep 5 16:40:47 2019 +0300

    [DLAB-984]: added error message in case of project starting issues
---
 .../src/main/resources/webapp/src/app/core/util/checkUtils.ts           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/services/self-service/src/main/resources/webapp/src/app/core/util/checkUtils.ts b/services/self-service/src/main/resources/webapp/src/app/core/util/checkUtils.ts
index 9a05903..f975d90 100644
--- a/services/self-service/src/main/resources/webapp/src/app/core/util/checkUtils.ts
+++ b/services/self-service/src/main/resources/webapp/src/app/core/util/checkUtils.ts
@@ -33,7 +33,7 @@ export class CheckUtils {
     const charCode = ($event.which) ? $event.which : $event.keyCode;
     if (charCode > 31 && (charCode < 48 || charCode > 57)
       && (charCode < 96 || charCode > 105)
-      || charCode === 45 || charCode === 47) {
+      || charCode === 45 || charCode === 47 || charCode === 101) {
       $event.preventDefault();
       return false;
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org