From 300b3a251725bb38a720dbf6278e68be0cae1ee8 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 26 Mar 2024 17:20:53 +0200 Subject: [PATCH 1/2] fix emoji react buttons in notifications sidebar --- src/components/emoji_reactions/emoji_reactions.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/emoji_reactions/emoji_reactions.vue b/src/components/emoji_reactions/emoji_reactions.vue index a228af115..ad4a3c0bd 100644 --- a/src/components/emoji_reactions/emoji_reactions.vue +++ b/src/components/emoji_reactions/emoji_reactions.vue @@ -91,7 +91,6 @@ padding: 0; .emoji-reaction-count-button { - background-color: var(--btn); margin: 0; height: 100%; border-top-left-radius: 0; From c298611af2736b0a0d535b6bb47b2c9025e4069a Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 26 Mar 2024 18:49:29 +0200 Subject: [PATCH 2/2] fix tests and make them pass on shit hardware --- test/unit/specs/services/theme_data/theme_data3.spec.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/unit/specs/services/theme_data/theme_data3.spec.js b/test/unit/specs/services/theme_data/theme_data3.spec.js index b863e5fec..bb8d785cf 100644 --- a/test/unit/specs/services/theme_data/theme_data3.spec.js +++ b/test/unit/specs/services/theme_data/theme_data3.spec.js @@ -9,7 +9,7 @@ import { basePaletteKeys } from 'src/services/theme_data/theme2_to_theme3.js' -describe.only('Theme Data 3', () => { +describe('Theme Data 3', () => { describe('getAllPossibleCombinations', () => { it('test simple 3 values case', () => { const out = getAllPossibleCombinations([1, 2, 3]).map(x => x.sort((a, b) => a - b)) @@ -62,7 +62,9 @@ describe.only('Theme Data 3', () => { }) }) - describe('init', () => { + describe('init', function () { + this.timeout(5000) + it('Test initialization without anything', () => { const out = init([], '#DEADAF')