From aaecab810ce3708152758092a39e4172ef74cae8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Tue, 20 Jul 2021 11:48:55 +0200 Subject: [PATCH] Fix linting --- webapp/components/PageFooter/PageFooter.spec.js | 8 ++++++-- webapp/components/PageFooter/PageFooter.vue | 6 +++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/webapp/components/PageFooter/PageFooter.spec.js b/webapp/components/PageFooter/PageFooter.spec.js index 02e788737..a7349496b 100644 --- a/webapp/components/PageFooter/PageFooter.spec.js +++ b/webapp/components/PageFooter/PageFooter.spec.js @@ -118,11 +118,15 @@ describe('PageFooter.vue', () => { }) it('renders TERMS_AND_CONDITIONS as "a" tag link', () => { - expect(wrapper.find(`a[href="https://ocelot.social/TERMS_AND_CONDITIONS"]`).exists()).toBeTruthy() + expect( + wrapper.find(`a[href="https://ocelot.social/TERMS_AND_CONDITIONS"]`).exists(), + ).toBeTruthy() }) it('renders CODE_OF_CONDUCT as "a" tag link', () => { - expect(wrapper.find(`a[href="https://ocelot.social/CODE_OF_CONDUCT"]`).exists()).toBeTruthy() + expect( + wrapper.find(`a[href="https://ocelot.social/CODE_OF_CONDUCT"]`).exists(), + ).toBeTruthy() }) it('renders DATA_PRIVACY as "a" tag link', () => { diff --git a/webapp/components/PageFooter/PageFooter.vue b/webapp/components/PageFooter/PageFooter.vue index ab7ab576b..6bf049b05 100644 --- a/webapp/components/PageFooter/PageFooter.vue +++ b/webapp/components/PageFooter/PageFooter.vue @@ -1,7 +1,11 @@