Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,17 @@
<HeaderBar
:account-property="heading" />

<VisibilityDropdown v-for="parameter in visibilityArray"
:key="parameter.id"
:param-id="parameter.id"
:display-id="parameter.displayId"
:show-display-id="true"
:visibility.sync="parameter.visibility" />

<em :class="{ disabled }">{{ t('settings', 'The more restrictive setting of either visibility or scope is respected on your Profile — For example, when visibility is set to "Show to everyone" and scope is set to "Private", "Private" will be respected') }}</em>
<em :class="{ disabled }">
{{ t('settings', 'The more restrictive setting of either visibility or scope is respected on your Profile. For example, if visibility is set to "Show to everyone" and scope is set to "Private", "Private" is respected.') }}
</em>

<div class="visibility-dropdowns">
<VisibilityDropdown v-for="param in visibilityParams"
:key="param.id"
:param-id="param.id"
:display-id="param.displayId"
:visibility.sync="param.visibility" />
</div>
</section>
</template>

Expand Down