From bc8ec8f6ab478766a2ff0e030a881774ce4ad3fb Mon Sep 17 00:00:00 2001 From: Git'Fellow <12234510+solracsf@users.noreply.github.com> Date: Mon, 7 Sep 2026 13:10:02 +0200 Subject: [PATCH] fix(stream): drop deprecated word-break keyword failing stylelint `declaration-property-value-keyword-no-deprecated` reports `word-break: break-word` as an error rather than a warning, so `npm run stylelint` exits 2 and the stylelint job, which runs on every pull request with no path filter, fails. The declaration was redundant anyway: the same rule already sets `overflow-wrap: break-word` on the line above, which is what the legacy keyword aliases to. Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> --- src/components/activities/GenericActivity.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/activities/GenericActivity.vue b/src/components/activities/GenericActivity.vue index c86b25c14..e1dfdecf0 100644 --- a/src/components/activities/GenericActivity.vue +++ b/src/components/activities/GenericActivity.vue @@ -185,7 +185,6 @@ export default defineComponent({ flex-grow: 1; overflow-wrap: break-word; white-space: pre-wrap; - word-break: break-word; overflow: hidden; &__subject {