From 467bcc63bad6552951eb93948936c15ef19d1ebc Mon Sep 17 00:00:00 2001 From: Nachum Barcohen Date: Wed, 17 Jun 2026 22:33:48 +0300 Subject: [PATCH 1/2] fix: apply RTL direction class in the page editor The reader view (themes/default/components/page.vue) sets `is-rtl`/`is-ltr` on the root `v-app` from `$vuetify.rtl`, so all `.is-rtl` content styles apply to rendered pages. The editor's root `v-app` (components/editor.vue) was missing this class, so for RTL the CKEditor "Visual" editor rendered content left-to-right, so list bullets stayed on the left. I copied the reader's binding so the editor inherits the same `.is-rtl` content rules. --- client/components/editor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/editor.vue b/client/components/editor.vue index 7cd577b1..4dc7f350 100644 --- a/client/components/editor.vue +++ b/client/components/editor.vue @@ -1,5 +1,5 @@