diff --git a/README.md b/README.md index 50af3ff..f52f1e4 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@
The missing UI wrapper around selected parts of the ElasticSearch Tasks API
+The missing UI wrapper around selected parts of the ElasticSearch Tasks API
--- @@ -14,7 +14,7 @@ ## Background -Inspired by a [closed Kibana github issue](https://github.com/elastic/kibana/issues/42621): +This application attempts to solve the problem detailed in the [unresolved Kibana issue #42621](https://github.com/elastic/kibana/issues/42621): > Long-running tasks can leak processes and kill a cluster. Users need a way to detect slow queries and kill these tasks. We can start down the road of addressing this problem by building a “Tasks” app that show a list of all tasks that are running, indicate ones that are cancellable, display any available information that the API provides, and give users the ability to cancel these tasks. @@ -34,7 +34,7 @@ Locally: elasTasks is a client-side application with no server backend. Data lives only on your machine/browser. No information or ES data is sent to any server. -When connecting to an ElasticSearch host you may opt out of [CorsAnywhere](https://github.com/Rob--W/cors-anywhere/) -- a NodeJS reverse proxy which adds CORS headers to the proxied request. +When connecting to an ElasticSearch host you may opt out of enabling [CorsAnywhere](https://github.com/Rob--W/cors-anywhere/) -- a NodeJS reverse proxy which adds CORS headers to the proxied request. ## Contributing diff --git a/app/package.json b/app/package.json index 9d2164f..c30cfdd 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "elastasks", - "version": "1.0.0", + "version": "1.1.0", "scripts": { "ng": "ng", "start": "ng serve", @@ -21,6 +21,7 @@ "@angular/router": "~9.1.9", "@types/elasticsearch": "^5.0.36", "ng-zorro-antd": "^9.3.0", + "ngx-device-detector": "^2.0.0", "rxjs": "~6.5.4", "tslib": "^1.10.0", "zone.js": "~0.10.2" diff --git a/app/src/app/pages/login/login.component.html b/app/src/app/pages/login/login.component.html index 4856be1..848980a 100644 --- a/app/src/app/pages/login/login.component.html +++ b/app/src/app/pages/login/login.component.html @@ -1,18 +1,12 @@