Renamed post visiblity dropdown values for posts

no issue
This commit is contained in:
Peter Zimon 2019-10-04 12:57:58 +02:00
parent d81b39e355
commit 523b8e856f
2 changed files with 4 additions and 4 deletions

View File

@ -3,9 +3,9 @@ import {computed} from '@ember/object';
import {inject as service} from '@ember/service';
const VISIBILITIES = [
{label: 'Everyone', name: 'public'},
{label: 'Free and paying members', name: 'members'},
{label: 'Only paying members', name: 'paid'}
{label: 'Public', name: 'public'},
{label: 'Members only', name: 'members'},
{label: 'Paid-members only', name: 'paid'}
];
export default Component.extend({

View File

@ -79,7 +79,7 @@
{{#if feature.members}}
{{#unless session.user.isContributor}}
<div class="form-group">
<label for="visibility-input">Who can see this post</label>
<label for="visibility-input">Post access</label>
{{gh-psm-visibility-input post=post triggerId="visibility-input"}}
</div>
{{/unless}}