Skip to content

Commit

Permalink
Fix style of the sharing setting checkbox (#18628)
Browse files Browse the repository at this point in the history
Fix style of the sharing setting checkbox
  • Loading branch information
skjnldsv authored Jan 2, 2020
2 parents 014f25f + 272aa92 commit 3a179fe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/files_sharing/js/dist/personal-settings.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files_sharing/js/dist/personal-settings.js.map

Large diffs are not rendered by default.

13 changes: 8 additions & 5 deletions apps/files_sharing/src/components/PersonalSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,14 @@
<template>
<div id="files-sharing-personal-settings" class="section">
<h2>{{ t('files', 'Sharing') }}</h2>
<input id="files-sharing-personal-settings-accept"
v-model="accepting"
type="checkbox"
@change="toggleEnabled">
<label for="files-sharing-personal-settings-accept">{{ t('files_sharing', 'Accept user and group shares by default') }}</label>
<p>
<input id="files-sharing-personal-settings-accept"
v-model="accepting"
class="checkbox"
type="checkbox"
@change="toggleEnabled">
<label for="files-sharing-personal-settings-accept">{{ t('files_sharing', 'Accept user and group shares by default') }}</label>
</p>
</div>
</template>

Expand Down

0 comments on commit 3a179fe

Please sign in to comment.