summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJonas Sulzer <jonas@violoncello.ch>2019-03-12 18:40:14 +0100
committerJonas Sulzer <jonas@violoncello.ch>2019-03-12 18:40:14 +0100
commit5bf59e86ff91bc23f20e283ac603a2264bc522af (patch)
treeb9e9ee0a73ec35f8889ace81e0a8431dcc810787 /src
parentdd2346d4a499bce8190882d49b081ad61c3f5e5c (diff)
👌 IMPROVE: reorder post privacy to be consistent with mastodon
Signed-off-by: Jonas Sulzer <jonas@violoncello.ch>
Diffstat (limited to 'src')
-rw-r--r--src/components/Composer.vue20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/components/Composer.vue b/src/components/Composer.vue
index 3e0049df..ca882a3c 100644
--- a/src/components/Composer.vue
+++ b/src/components/Composer.vue
@@ -464,11 +464,11 @@ export default {
visibilityPopover() {
return [
{
- action: () => { this.switchType('direct') },
- icon: this.visibilityIconClass('direct'),
- active: this.activeState('direct'),
- text: t('social', 'Direct'),
- longtext: t('social', 'Post to mentioned users only')
+ action: () => { this.switchType('public') },
+ icon: this.visibilityIconClass('public'),
+ active: this.activeState('public'),
+ text: t('social', 'Public'),
+ longtext: t('social', 'Post to public timelines')
},
{
action: () => { this.switchType('unlisted') },
@@ -485,11 +485,11 @@ export default {
longtext: t('social', 'Post to followers only')
},
{
- action: () => { this.switchType('public') },
- icon: this.visibilityIconClass('public'),
- active: this.activeState('public'),
- text: t('social', 'Public'),
- longtext: t('social', 'Post to public timelines')
+ action: () => { this.switchType('direct') },
+ icon: this.visibilityIconClass('direct'),
+ active: this.activeState('direct'),
+ text: t('social', 'Direct'),
+ longtext: t('social', 'Post to mentioned users only')
}
]
}