aboutsummaryrefslogtreecommitdiff
path: root/src/components/scope_selector/scope_selector.js
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2024-03-26 17:13:41 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2024-03-26 17:13:41 +0000
commitd7f744d2819343eced508a589d6fad3842686a3e (patch)
treeb9f87847afea2dac31c007aef1d8dc2b60cf1145 /src/components/scope_selector/scope_selector.js
parent23edfe7b918844f8cc2ff5b9b245952092ee1cbf (diff)
parentc298611af2736b0a0d535b6bb47b2c9025e4069a (diff)
Merge branch 'themes3' into 'develop'
Themes 3.0 / Pleroma ISS (Interface Style Sheets) [Side A] See merge request pleroma/pleroma-fe!1892
Diffstat (limited to 'src/components/scope_selector/scope_selector.js')
-rw-r--r--src/components/scope_selector/scope_selector.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/scope_selector/scope_selector.js b/src/components/scope_selector/scope_selector.js
index 74bf7284..52cda368 100644
--- a/src/components/scope_selector/scope_selector.js
+++ b/src/components/scope_selector/scope_selector.js
@@ -44,10 +44,10 @@ const ScopeSelector = {
},
css () {
return {
- public: { selected: this.currentScope === 'public' },
- unlisted: { selected: this.currentScope === 'unlisted' },
- private: { selected: this.currentScope === 'private' },
- direct: { selected: this.currentScope === 'direct' }
+ public: { toggled: this.currentScope === 'public' },
+ unlisted: { toggled: this.currentScope === 'unlisted' },
+ private: { toggled: this.currentScope === 'private' },
+ direct: { toggled: this.currentScope === 'direct' }
}
}
},