logster 2.11.0 → 2.11.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a50dc52176adcb2a02cda4eb305c2e48881eb343636cafef38a71f6d825ea58
4
- data.tar.gz: bf6998269eeb727ad3cd41c006af4c13296c24e1b7866ab7b2a111966b603526
3
+ metadata.gz: 6b0b28ee30c18ff2369e3ce67d5d08b4e78090fd14acf84f4880818f1a039dba
4
+ data.tar.gz: 9503cf60286d36dd8c7e3077dd362b81c5111923f57e2295fa6520f1aacae7f5
5
5
  SHA512:
6
- metadata.gz: 03b7d22d2c78668667cd253861673c776eb4ab43e4ce5a36afed3f3df62e5096c77e20f8a77fc23e776258033bd609c06982ad301a89f3ead04a357f4f89e865
7
- data.tar.gz: 4fa248be7a4462e6778228e7988bc86a1cb05e4e4ee714e5a265042afa8a1baa99af403ccb2423ee9f20dc3e3708bff1199983883128b567accd9ccb02c1105b
6
+ metadata.gz: c0327869de6dcc319915a239a2a82b238f028f8f973fdb9170fa0e8f6549460bf4df3ff6b306a08a573bde6cfef42c08646b22b4ff06c372be15d0fde2c2728a
7
+ data.tar.gz: 3b0ab2e5f6b3cece6d1b4244f49cfc935a1987c19921a7c1d5c5b1e5acd1e4920894c9d7230d869092a16a56cacbbec531a2d990f594678afa953658bc620cc3
data/CHANGELOG.md CHANGED
@@ -1,4 +1,15 @@
1
1
  # CHANGELOG
2
+ - 2022-08-25: 2.11.3
3
+
4
+ - DEV: Avoid deprecation warning in Redis 4.8 (#166)
5
+
6
+ - 2022-04-28: 2.11.2
7
+
8
+ - FIX: store override level in thread local storage (Truffle Ruby compatability)
9
+
10
+ - 2022-04-21: 2.11.1
11
+
12
+ - FIX: Redis pipelining deprecation (#159)
2
13
 
3
14
  - 2022-03-12: 2.11.0
4
15
 
@@ -1,12 +1,8 @@
1
- import Controller from "@ember/controller";
2
- import {
3
- ajax,
4
- getLocalStorage,
5
- setLocalStorage
6
- } from "client-app/lib/utilities";
1
+ import { debounce } from "@ember/runloop";
7
2
  import { computed } from "@ember/object";
3
+ import Controller from "@ember/controller";
4
+ import { ajax, getLocalStorage, setLocalStorage } from "client-app/lib/utilities";
8
5
  import Preload from "client-app/lib/preload";
9
- import { debounce } from "@ember/runloop";
10
6
 
11
7
  export default Controller.extend({
12
8
  showDebug: getLocalStorage("showDebug", false),
@@ -14,7 +10,7 @@ export default Controller.extend({
14
10
  showWarn: getLocalStorage("showWarn", true),
15
11
  showErr: getLocalStorage("showErr", true),
16
12
  showFatal: getLocalStorage("showFatal", true),
17
- search: "",
13
+ search: null,
18
14
  queryParams: ["search"],
19
15
 
20
16
  showSettings: computed(function() {
@@ -130,6 +126,14 @@ export default Controller.extend({
130
126
  }
131
127
  },
132
128
 
129
+ searchTerm: computed("search", function () {
130
+ if (this.search) {
131
+ this.doSearch(this.search)
132
+ return this.search;
133
+ }
134
+ return null;
135
+ }),
136
+
133
137
  doSearch(term) {
134
138
  this.model.set("search", term);
135
139
  this.model.reload().then(() => this.model.updateSelectedRow());
@@ -87,6 +87,7 @@
87
87
  type="text"
88
88
  class="search"
89
89
  placeholder="Search"
90
+ value={{searchTerm}}
90
91
  onkeyup={{action "updateSearch" value="target.value"}}
91
92
  />
92
93
  <div class="footer-btns">