diff --git a/public/index.html b/public/index.html index 7f32e4f9..4a93b567 100644 --- a/public/index.html +++ b/public/index.html @@ -1,17 +1,22 @@ - - - - - - Alicia App | My dashboard of links and things - - - -
- - - + + + + + + + Server Dashboard + + + + + + + +
+ + + \ No newline at end of file diff --git a/src/components/FilterTile.vue b/src/components/FilterTile.vue index 61a88936..2e3f2e62 100644 --- a/src/components/FilterTile.vue +++ b/src/components/FilterTile.vue @@ -17,6 +17,7 @@
hello world +
@@ -47,7 +48,7 @@ export default { }, mounted() { window.addEventListener('keyup', (event) => { - const { key } = event; + const { key, keyCode } = event; if (/^[a-zA-Z]$/.test(key) && !document.activeElement.id) { try { this.input += key; @@ -56,6 +57,8 @@ export default { } catch (e) { // Do nothing } + } else if (keyCode === 27) { + this.clearFilterInput(); } }); }, diff --git a/src/components/Footer.vue b/src/components/Footer.vue index c40ddee0..9ca109aa 100644 --- a/src/components/Footer.vue +++ b/src/components/Footer.vue @@ -22,13 +22,15 @@ export default { }; -