]> source.dussan.org Git - nextcloud-server.git/commitdiff
Auto fix warnings
authorLouis Chemineau <louis@chmn.me>
Thu, 20 Jan 2022 11:21:43 +0000 (12:21 +0100)
committerJohn Molakvoæ <skjnldsv@protonmail.com>
Fri, 21 Jan 2022 12:13:52 +0000 (13:13 +0100)
Signed-off-by: Louis Chemineau <louis@chmn.me>
65 files changed:
apps/comments/src/components/Comment.vue
apps/dav/src/views/Availability.vue
apps/dav/src/views/CalDavSettings.vue
apps/files/src/components/SidebarTab.vue
apps/files/src/components/TransferOwnershipDialogue.vue
apps/files/src/services/Sidebar.js
apps/files/src/views/Sidebar.vue
apps/files/src/views/TemplatePicker.vue
apps/files_sharing/src/components/SharingEntry.vue
apps/files_sharing/src/components/SharingEntryInherited.vue
apps/files_sharing/src/components/SharingEntryInternal.vue
apps/files_sharing/src/components/SharingEntryLink.vue
apps/files_sharing/src/models/Share.js
apps/files_sharing/src/services/ExternalLinkActions.js
apps/files_sharing/src/services/ExternalShareActions.js
apps/files_sharing/src/services/ShareSearch.js
apps/files_sharing/src/services/TabSections.js
apps/files_sharing/src/views/SharingInherited.vue
apps/files_sharing/src/views/SharingTab.vue
apps/settings/src/components/AdminDelegation/GroupSelect.vue
apps/settings/src/components/PersonalInfo/BiographySection/Biography.vue
apps/settings/src/components/PersonalInfo/BiographySection/BiographySection.vue
apps/settings/src/components/PersonalInfo/DisplayNameSection/DisplayName.vue
apps/settings/src/components/PersonalInfo/DisplayNameSection/DisplayNameSection.vue
apps/settings/src/components/PersonalInfo/EmailSection/Email.vue
apps/settings/src/components/PersonalInfo/EmailSection/EmailSection.vue
apps/settings/src/components/PersonalInfo/HeadlineSection/Headline.vue
apps/settings/src/components/PersonalInfo/HeadlineSection/HeadlineSection.vue
apps/settings/src/components/PersonalInfo/LanguageSection/Language.vue
apps/settings/src/components/PersonalInfo/LanguageSection/LanguageSection.vue
apps/settings/src/components/PersonalInfo/OrganisationSection/Organisation.vue
apps/settings/src/components/PersonalInfo/OrganisationSection/OrganisationSection.vue
apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue
apps/settings/src/components/PersonalInfo/ProfileSection/ProfileCheckbox.vue
apps/settings/src/components/PersonalInfo/ProfileSection/ProfilePreviewCard.vue
apps/settings/src/components/PersonalInfo/ProfileSection/ProfileSection.vue
apps/settings/src/components/PersonalInfo/ProfileVisibilitySection/ProfileVisibilitySection.vue
apps/settings/src/components/PersonalInfo/ProfileVisibilitySection/VisibilityDropdown.vue
apps/settings/src/components/PersonalInfo/RoleSection/Role.vue
apps/settings/src/components/PersonalInfo/RoleSection/RoleSection.vue
apps/settings/src/components/PersonalInfo/shared/AddButton.vue
apps/settings/src/components/PersonalInfo/shared/FederationControl.vue
apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue
apps/settings/src/components/PersonalInfo/shared/HeaderBar.vue
apps/settings/src/components/UserList/UserRow.vue
apps/settings/src/components/UserList/UserRowSimple.vue
apps/settings/src/views/Apps.vue
apps/settings/src/views/Users.vue
apps/user_status/src/UserStatus.vue
apps/user_status/src/components/ClearAtSelect.vue
apps/user_status/src/components/CustomMessageInput.vue
apps/user_status/src/components/PredefinedStatus.vue
apps/user_status/src/components/PredefinedStatusesList.vue
apps/user_status/src/components/SetStatusModal.vue
apps/user_status/src/views/Dashboard.vue
apps/weather_status/src/App.vue
apps/workflowengine/src/components/Checks/FileMimeType.vue
apps/workflowengine/src/components/Checks/RequestURL.vue
apps/workflowengine/src/components/Checks/RequestUserAgent.vue
core/src/components/HeaderMenu.vue
core/src/components/Profile/PrimaryActionButton.vue
core/src/components/UnifiedSearch/SearchResultPlaceholders.vue
core/src/components/setup/InstallButton.vue
core/src/views/Login.vue
core/src/views/Profile.vue

index 5bab02262aa61d7ec1814ee73e53ba5f30eb8c39..f22754ea201869d9aadd472e676de2723de699b5 100644 (file)
                                show if we have a message id and current user is author -->
                        <Actions v-if="isOwnComment && id && !loading" class="comment__actions">
                                <template v-if="!editing">
-                                       <ActionButton
-                                               :close-after-click="true"
+                                       <ActionButton :close-after-click="true"
                                                icon="icon-rename"
                                                @click="onEdit">
                                                {{ t('comments', 'Edit comment') }}
                                        </ActionButton>
                                        <ActionSeparator />
-                                       <ActionButton
-                                               :close-after-click="true"
+                                       <ActionButton :close-after-click="true"
                                                icon="icon-delete"
                                                @click="onDeleteWithUndo">
                                                {{ t('comments', 'Delete comment') }}
index b5a90633992f564f1b1af570a1685762c221b828..d826ca3e57fa633080c28004f7d35fe3d14ad613 100644 (file)
                                        <div class="availability-slot-group">
                                                <template v-for="(slot, idx) in day.slots">
                                                        <div :key="`slot-${day.id}-${idx}`" class="availability-slot">
-                                                               <DatetimePicker
-                                                                       v-model="slot.start"
+                                                               <DatetimePicker v-model="slot.start"
                                                                        type="time"
                                                                        class="start-date"
                                                                        format="H:mm" />
                                                                <span class="to-text">
                                                                        {{ $t('dav', 'to') }}
                                                                </span>
-                                                               <DatetimePicker
-                                                                       v-model="slot.end"
+                                                               <DatetimePicker v-model="slot.end"
                                                                        type="time"
                                                                        class="end-date"
                                                                        format="H:mm" />
index 4b33b2b45bb0afef7d8222c4aaeccd6d8c82803d..06c5e9cf8fc2651b40bc74fc06a25950043633c2 100644 (file)
@@ -7,8 +7,7 @@
                <!-- eslint-disable-next-line vue/no-v-html -->
                <p class="settings-hint" v-html="hint" />
                <p>
-                       <input
-                               id="caldavSendInvitations"
+                       <input id="caldavSendInvitations"
                                v-model="sendInvitations"
                                type="checkbox"
                                class="checkbox">
@@ -23,8 +22,7 @@
                        <em v-html="sendInvitationsHelpText" />
                </p>
                <p>
-                       <input
-                               id="caldavGenerateBirthdayCalendar"
+                       <input id="caldavGenerateBirthdayCalendar"
                                v-model="generateBirthdayCalendar"
                                type="checkbox"
                                class="checkbox">
@@ -41,8 +39,7 @@
                        </em>
                </p>
                <p>
-                       <input
-                               id="caldavSendEventReminders"
+                       <input id="caldavSendEventReminders"
                                v-model="sendEventReminders"
                                type="checkbox"
                                class="checkbox">
@@ -61,8 +58,7 @@
                        </em>
                </p>
                <p>
-                       <input
-                               id="caldavSendEventRemindersPush"
+                       <input id="caldavSendEventRemindersPush"
                                v-model="sendEventRemindersPush"
                                type="checkbox"
                                class="checkbox"
index bead5cad1ef917a76aef012776a2928e10d41266..ad80f91d431591acd7a9ec36e90079fc7c6a77e1 100644 (file)
@@ -21,8 +21,7 @@
   -
   -->
 <template>
-       <AppSidebarTab
-               :id="id"
+       <AppSidebarTab :id="id"
                ref="tab"
                :name="name"
                :icon="icon"
index 665af6fed089c8c82700841ab30c1c2639d1e372..89c6e2f60e435ebba65e68d5836ac0be99ea4ed3 100644 (file)
@@ -37,8 +37,7 @@
                                <label for="targetUser">
                                        <span>{{ t('files', 'New owner') }}</span>
                                </label>
-                               <Multiselect
-                                       id="targetUser"
+                               <Multiselect id="targetUser"
                                        v-model="selectedUser"
                                        :options="formatedUserSuggestions"
                                        :multiple="false"
index e28dacb6b210e7376e7683dda0f8c9431c58c50f..e87ee71a4b104cbe0b8e7475df00984ffb7e9e89 100644 (file)
@@ -22,7 +22,7 @@
 
 export default class Sidebar {
 
-       _state;
+       _state
 
        constructor() {
                // init empty state
index ec41240e3f2c3f2b74be313cb92f160c3965e783..a83cb8640eb2fdf8dd4e0ed954acd07d3052b52c 100644 (file)
@@ -21,8 +21,7 @@
   -->
 
 <template>
-       <AppSidebar
-               v-if="file"
+       <AppSidebar v-if="file"
                ref="sidebar"
                v-bind="appSidebar"
                :force-menu="true"
@@ -46,8 +45,7 @@
                <template v-if="fileInfo" #secondary-actions>
                        <!-- TODO: create proper api for apps to register actions
                        And inject themselves here. -->
-                       <ActionButton
-                               v-if="isSystemTagsEnabled"
+                       <ActionButton v-if="isSystemTagsEnabled"
                                :close-after-click="true"
                                icon="icon-tag"
                                @click="toggleTags">
@@ -63,8 +61,7 @@
                <!-- If fileInfo fetch is complete, render tabs -->
                <template v-for="tab in tabs" v-else-if="fileInfo">
                        <!-- Hide them if we're loading another file but keep them mounted -->
-                       <SidebarTab
-                               v-if="tab.enabled(fileInfo)"
+                       <SidebarTab v-if="tab.enabled(fileInfo)"
                                v-show="!loading"
                                :id="tab.id"
                                :key="tab.id"
index 4e0fc8c7a540d86342d641b5ad81fd0a60aa134d..ade41a5416a2f4ca0e519aed12f400714dc3acbd 100644 (file)
 
                        <!-- Templates list -->
                        <ul class="templates-picker__list">
-                               <TemplatePreview
-                                       v-bind="emptyTemplate"
+                               <TemplatePreview v-bind="emptyTemplate"
                                        :checked="checked === emptyTemplate.fileid"
                                        @check="onCheck" />
 
-                               <TemplatePreview
-                                       v-for="template in provider.templates"
+                               <TemplatePreview v-for="template in provider.templates"
                                        :key="template.fileid"
                                        v-bind="template"
                                        :checked="checked === template.fileid"
index d5d7f62a832a02aeff21b9c4ceed534b17711265..2d29aaf1dc6e5f423cfdb71587dd94d05f6d98c9 100644 (file)
                                <span>{{ share.status.message || '' }}</span>
                        </p>
                </component>
-               <Actions
-                       menu-align="right"
+               <Actions menu-align="right"
                        class="sharing-entry__actions"
                        @close="onMenuClose">
                        <template v-if="share.canEdit">
                                <!-- edit permission -->
-                               <ActionCheckbox
-                                       ref="canEdit"
+                               <ActionCheckbox ref="canEdit"
                                        :checked.sync="canEdit"
                                        :value="permissionsEdit"
                                        :disabled="saving || !canSetEdit">
@@ -54,8 +52,7 @@
                                </ActionCheckbox>
 
                                <!-- create permission -->
-                               <ActionCheckbox
-                                       v-if="isFolder"
+                               <ActionCheckbox v-if="isFolder"
                                        ref="canCreate"
                                        :checked.sync="canCreate"
                                        :value="permissionsCreate"
@@ -64,8 +61,7 @@
                                </ActionCheckbox>
 
                                <!-- delete permission -->
-                               <ActionCheckbox
-                                       v-if="isFolder"
+                               <ActionCheckbox v-if="isFolder"
                                        ref="canDelete"
                                        :checked.sync="canDelete"
                                        :value="permissionsDelete"
@@ -74,8 +70,7 @@
                                </ActionCheckbox>
 
                                <!-- reshare permission -->
-                               <ActionCheckbox
-                                       v-if="config.isResharingAllowed"
+                               <ActionCheckbox v-if="config.isResharingAllowed"
                                        ref="canReshare"
                                        :checked.sync="canReshare"
                                        :value="permissionsShare"
 
                                <!-- note -->
                                <template v-if="canHaveNote">
-                                       <ActionCheckbox
-                                               :checked.sync="hasNote"
+                                       <ActionCheckbox :checked.sync="hasNote"
                                                :disabled="saving"
                                                @uncheck="queueUpdate('note')">
                                                {{ t('files_sharing', 'Note to recipient') }}
index b8b5674efc901d0d8a01f5b4ac886c64cd94ede4..72a513cfb1f5c7060d1b34df576abe8495cca001 100644 (file)
   -->
 
 <template>
-       <SharingEntrySimple
-               :key="share.id"
+       <SharingEntrySimple :key="share.id"
                class="sharing-entry__inherited"
                :title="share.shareWithDisplayName">
                <template #avatar>
-                       <Avatar
-                               :user="share.shareWith"
+                       <Avatar :user="share.shareWith"
                                :display-name="share.shareWithDisplayName"
                                class="sharing-entry__avatar"
                                tooltip-message="" />
index e96a85340a60f96efa5c3d26b42b706dffa98c61..73b86d261808ecdf4c55eec1b9dac70c113c8ddf 100644 (file)
@@ -1,7 +1,6 @@
 
 <template>
-       <SharingEntrySimple
-               class="sharing-entry__internal"
+       <SharingEntrySimple class="sharing-entry__internal"
                :title="t('files_sharing', 'Internal link')"
                :subtitle="internalLinkSubtitle">
                <template #avatar>
index af2ea4cc6e5f7505d9425f3b67a559f5e63c4ddb..5a49a1d497648aaa03b57ae77396e88ebd3cf402 100644 (file)
                        <template v-if="share">
                                <template v-if="share.canEdit && canReshare">
                                        <!-- Custom Label -->
-                                       <ActionInput
-                                               ref="label"
+                                       <ActionInput ref="label"
                                                v-tooltip.auto="{
                                                        content: errors.label,
                                                        show: errors.label,
                                                {{ t('files_sharing', 'Allow editing') }}
                                        </ActionCheckbox>
 
-                                       <ActionCheckbox
-                                               :checked.sync="share.hideDownload"
+                                       <ActionCheckbox :checked.sync="share.hideDownload"
                                                :disabled="saving"
                                                @change="queueUpdate('hideDownload')">
                                                {{ t('files_sharing', 'Hide download') }}
index 21e7e34c5d1a5fd8a9b07cea334df8913823269e..87c2fec86f275154ec273a1a08278c2f6e0e3740 100644 (file)
@@ -27,7 +27,7 @@
 
 export default class Share {
 
-       _share;
+       _share
 
        /**
         * Create the share object
index c4091a5524cca56e44bcfbb0b37407c8403b72b8..06cf97ed255e9b06867b4f985e458ec95f05a13d 100644 (file)
@@ -22,7 +22,7 @@
 
 export default class ExternalLinkActions {
 
-       _state;
+       _state
 
        constructor() {
                // init empty state
index 571989b224905f2469bdfd39f02797d341c0ec7c..5d64c97ba700de569e83c053816b0695c29babb4 100644 (file)
@@ -22,7 +22,7 @@
 
 export default class ExternalShareActions {
 
-       _state;
+       _state
 
        constructor() {
                // init empty state
index e3dbc61f8c39ebe6f421fe094948003e2c3fc8ad..1a9737cbfba7fe05ff2948bbb498fcf4bc9345fe 100644 (file)
@@ -22,7 +22,7 @@
 
 export default class ShareSearch {
 
-       _state;
+       _state
 
        constructor() {
                // init empty state
index cec046cd3ce6b5e9553f4ed3ee45f0509a0039ed..d266909b6cc9bef81fa7e38b76d55d462e758237 100644 (file)
@@ -22,7 +22,7 @@
 
 export default class TabSections {
 
-       _sections;
+       _sections
 
        constructor() {
                this._sections = []
index 1911e05579fb1a2f0f980da5396b1cd2cca1978e..3a3e4b633e27a326111b822e0cef39bb4d102d58 100644 (file)
@@ -23,8 +23,7 @@
 <template>
        <ul id="sharing-inherited-shares">
                <!-- Main collapsible entry -->
-               <SharingEntrySimple
-                       class="sharing-entry__inherited"
+               <SharingEntrySimple class="sharing-entry__inherited"
                        :title="mainTitle"
                        :subtitle="subTitle">
                        <template #avatar>
index 62d442191bcce00881d59a9dc21e462cd9c8b9c6..d1174218b086305194a72a25ed03fe860d6eace6 100644 (file)
@@ -33,8 +33,7 @@
                        <!-- shared with me information -->
                        <SharingEntrySimple v-if="isSharedWithMe" v-bind="sharedWithMe" class="sharing-entry__reshare">
                                <template #avatar>
-                                       <Avatar
-                                               :user="sharedWithMe.user"
+                                       <Avatar :user="sharedWithMe.user"
                                                :display-name="sharedWithMe.displayName"
                                                class="sharing-entry__avatar"
                                                tooltip-message="" />
index eb7fd3e0c343db8bd9b8161ed234d9c7211b196e..f9db50b3cc6f409401eb0535f79a53bf98a3b559 100644 (file)
@@ -1,6 +1,5 @@
 <template>
-       <Multiselect
-               v-model="selected"
+       <Multiselect v-model="selected"
                class="group-multiselect"
                :placeholder="t('settings', 'None')"
                track-by="gid"
index 64f9640d9f250251bf89d8146a53bbbfd915999b..ffe0029db8d44c914c9872d1d7da809a5bb6681c 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <div class="biography">
-               <textarea
-                       id="biography"
+               <textarea id="biography"
                        :placeholder="t('settings', 'Your biography')"
                        :value="biography"
                        rows="8"
index 637c24e26657f724e60eb2de425a8d5bf29c1856..c8aacb03e9ce698f37da1f46eaf4e0edd08c0fda 100644 (file)
 
 <template>
        <section>
-               <HeaderBar
-                       :account-property="accountProperty"
+               <HeaderBar :account-property="accountProperty"
                        label-for="biography"
                        :scope.sync="primaryBiography.scope" />
 
-               <Biography
-                       :biography.sync="primaryBiography.value"
+               <Biography :biography.sync="primaryBiography.value"
                        :scope.sync="primaryBiography.scope" />
        </section>
 </template>
index 584f857833760f4454acb5c1993e0c528fbc7171..0cfa630123e884625533d63d783cf08312cbb461 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <div class="displayname">
-               <input
-                       id="displayname"
+               <input id="displayname"
                        type="text"
                        :placeholder="t('settings', 'Your full name')"
                        :value="displayName"
index 6f07d72d456fba5625207d5ed8c85743fb5f0521..caee7e7c68ef93512bbac264a38ace62d006f2a3 100644 (file)
 
 <template>
        <section>
-               <HeaderBar
-                       :account-property="accountProperty"
+               <HeaderBar :account-property="accountProperty"
                        label-for="displayname"
                        :is-editable="displayNameChangeSupported"
                        :is-valid-section="isValidSection"
                        :scope.sync="primaryDisplayName.scope" />
 
                <template v-if="displayNameChangeSupported">
-                       <DisplayName
-                               :display-name.sync="primaryDisplayName.value"
+                       <DisplayName :display-name.sync="primaryDisplayName.value"
                                :scope.sync="primaryDisplayName.scope" />
                </template>
 
index 383b8a608ffa065dc2cdfa6303fd510e9c0a949f..6901ff5c19be2a59cc91f4f30a3b4bfd32d98d00 100644 (file)
@@ -23,8 +23,7 @@
 <template>
        <div>
                <div class="email">
-                       <input
-                               :id="inputId"
+                       <input :id="inputId"
                                ref="email"
                                type="email"
                                :placeholder="inputPlaceholder"
@@ -41,8 +40,7 @@
                                </transition>
 
                                <template v-if="!primary">
-                                       <FederationControl
-                                               :account-property="accountProperty"
+                                       <FederationControl :account-property="accountProperty"
                                                :additional="true"
                                                :additional-value="email"
                                                :disabled="federationDisabled"
                                                @update:scope="onScopeChange" />
                                </template>
 
-                               <Actions
-                                       class="email__actions"
+                               <Actions class="email__actions"
                                        :aria-label="t('settings', 'Email options')"
                                        :disabled="deleteDisabled"
                                        :force-menu="true">
-                                       <ActionButton
-                                               :aria-label="deleteEmailLabel"
+                                       <ActionButton :aria-label="deleteEmailLabel"
                                                :close-after-click="true"
                                                :disabled="deleteDisabled"
                                                icon="icon-delete"
index f25b281782f728bbfee00ea6767de3bb344d8af5..07ec35861a9d0f44e266204d4607fc6bc51efaa7 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <section>
-               <HeaderBar
-                       :account-property="accountProperty"
+               <HeaderBar :account-property="accountProperty"
                        label-for="email"
                        :handle-scope-change="savePrimaryEmailScope"
                        :is-editable="true"
@@ -33,8 +32,7 @@
                        @add-additional="onAddAdditionalEmail" />
 
                <template v-if="displayNameChangeSupported">
-                       <Email
-                               :primary="true"
+                       <Email :primary="true"
                                :scope.sync="primaryEmail.scope"
                                :email.sync="primaryEmail.value"
                                :active-notification-email.sync="notificationEmail"
index 4818fa9c6ab5229bbe083387d45f12d9b1b982e8..2b81169bb4bbcdc9c71179186111512dd2bcf076 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <div class="headline">
-               <input
-                       id="headline"
+               <input id="headline"
                        type="text"
                        :placeholder="t('settings', 'Your headline')"
                        :value="headline"
index 0eb83be535c0ceb61451bf99c6867fd0fcbb40ca..4f3714aa0ee8b0c0de5fd683553fdfb92931970d 100644 (file)
 
 <template>
        <section>
-               <HeaderBar
-                       :account-property="accountProperty"
+               <HeaderBar :account-property="accountProperty"
                        label-for="headline"
                        :scope.sync="primaryHeadline.scope" />
 
-               <Headline
-                       :headline.sync="primaryHeadline.value"
+               <Headline :headline.sync="primaryHeadline.value"
                        :scope.sync="primaryHeadline.scope" />
        </section>
 </template>
index 14fe7360148d1f3664b0418a3dc7882865bcaeee..2f11f4932078a33948560c1995a0c4e06a746d9b 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <div class="language">
-               <select
-                       id="language"
+               <select id="language"
                        :placeholder="t('settings', 'Language')"
                        @change="onLanguageChange">
                        <option v-for="commonLanguage in commonLanguages"
@@ -43,8 +42,7 @@
                        </option>
                </select>
 
-               <a
-                       href="https://www.transifex.com/nextcloud/nextcloud/"
+               <a href="https://www.transifex.com/nextcloud/nextcloud/"
                        target="_blank"
                        rel="noreferrer noopener">
                        <em>{{ t('settings', 'Help translate') }}</em>
index 8c53081fb80901b2e745161f034e9f8b8abee2b3..90882b23869907b0c1d94e8be1613bafdfcd8b45 100644 (file)
 
 <template>
        <section>
-               <HeaderBar
-                       :account-property="accountProperty"
+               <HeaderBar :account-property="accountProperty"
                        label-for="language" />
 
                <template v-if="isEditable">
-                       <Language
-                               :common-languages="commonLanguages"
+                       <Language :common-languages="commonLanguages"
                                :other-languages="otherLanguages"
                                :language.sync="language" />
                </template>
index 98e1143dbbbdfe1fa7f6c888af984b32127b299a..106c5b6f6ff4c31bb3b3b04a9608646d3f7b9377 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <div class="organisation">
-               <input
-                       id="organisation"
+               <input id="organisation"
                        type="text"
                        :placeholder="t('settings', 'Your organisation')"
                        :value="organisation"
index 420f79fc8d03bd0187542a302c8e6c76633c6f40..2a0b93d552f69c62a59a5d79d9c3d83e8d43a7e3 100644 (file)
 
 <template>
        <section>
-               <HeaderBar
-                       :account-property="accountProperty"
+               <HeaderBar :account-property="accountProperty"
                        label-for="organisation"
                        :scope.sync="primaryOrganisation.scope" />
 
-               <Organisation
-                       :organisation.sync="primaryOrganisation.value"
+               <Organisation :organisation.sync="primaryOrganisation.value"
                        :scope.sync="primaryOrganisation.scope" />
        </section>
 </template>
index b1ff57130b1a423b3801d9319d7ab46670ffb023..1ee3bc0e1499454d9c66a3946bc2b37f75599d70 100644 (file)
 -->
 
 <template>
-       <a
-               :class="{ disabled }"
+       <a :class="{ disabled }"
                href="#profile-visibility"
                v-on="$listeners">
-               <ChevronDownIcon
-                       class="anchor-icon"
+               <ChevronDownIcon class="anchor-icon"
                        decorative
                        title=""
                        :size="22" />
index fba5a883ab47a9d67f69e87a2dbe5d8f89030d17..d7e78915c5d356dd6603422c5976c5fd77b2df79 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <div class="checkbox-container">
-               <input
-                       id="enable-profile"
+               <input id="enable-profile"
                        class="checkbox"
                        type="checkbox"
                        :checked="profileEnabled"
index 0145431176505229d5e179621a2bc26134eb88e6..4cc0d50346a9d34ca19843886a6f4ef416f8a045 100644 (file)
 -->
 
 <template>
-       <a
-               class="preview-card"
+       <a class="preview-card"
                :class="{ disabled }"
                :href="profilePageLink">
-               <Avatar
-                       class="preview-card__avatar"
+               <Avatar class="preview-card__avatar"
                        :user="userId"
                        :size="48"
                        :show-user-status="true"
index f33b332aadb8b68e27df647e7fbfe73372ad8907..46048e96c0e808b5e2fb7fec6a1670247aa2c465 100644 (file)
 
 <template>
        <section>
-               <HeaderBar
-                       :account-property="accountProperty" />
+               <HeaderBar :account-property="accountProperty" />
 
-               <ProfileCheckbox
-                       :profile-enabled.sync="profileEnabled" />
+               <ProfileCheckbox :profile-enabled.sync="profileEnabled" />
 
-               <ProfilePreviewCard
-                       :organisation="organisation"
+               <ProfilePreviewCard :organisation="organisation"
                        :display-name="displayName"
                        :profile-enabled="profileEnabled"
                        :user-id="userId" />
 
-               <EditProfileAnchorLink
-                       :profile-enabled="profileEnabled" />
+               <EditProfileAnchorLink :profile-enabled="profileEnabled" />
        </section>
 </template>
 
index a0ccec5e55c0e3e19c7253b9636eb8a5c74e092d..16a46fee969b72a19f63e34800bdabf00ccd4fe3 100644 (file)
 
 <template>
        <!-- TODO remove this inline margin placeholder once the settings layout is updated -->
-       <section
-               id="profile-visibility"
+       <section id="profile-visibility"
                :style="{ marginLeft }">
-               <HeaderBar
-                       :account-property="heading" />
+               <HeaderBar :account-property="heading" />
 
                <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"
+               <div class="visibility-dropdowns"
                        :style="{
                                gridTemplateRows: `repeat(${rows}, 44px)`,
                        }">
index 15ead42ad91e40479e0ca573fb49fe287193862e..e057d5f0a08f68d558dce227209411d17efd5d50 100644 (file)
 -->
 
 <template>
-       <div
-               class="visibility-container"
+       <div class="visibility-container"
                :class="{ disabled }">
                <label :for="inputId">
                        {{ t('settings', '{displayId}', { displayId }) }}
                </label>
-               <Multiselect
-                       :id="inputId"
+               <Multiselect :id="inputId"
                        class="visibility-container__multiselect"
                        :options="visibilityOptions"
                        track-by="name"
index c0e990388565b7e30340f355139adbeaf9838d97..efbc06e61be4816a87e552f788cf10c9cf958e4f 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <div class="role">
-               <input
-                       id="role"
+               <input id="role"
                        type="text"
                        :placeholder="t('settings', 'Your role')"
                        :value="role"
index 4bfaa6b0eb8c7f37ee4557690f9600e27d9c875d..51026f4860c99a3908abb21ffd4c9235a14e2f74 100644 (file)
 
 <template>
        <section>
-               <HeaderBar
-                       :account-property="accountProperty"
+               <HeaderBar :account-property="accountProperty"
                        label-for="role"
                        :scope.sync="primaryRole.scope" />
 
-               <Role
-                       :role.sync="primaryRole.value"
+               <Role :role.sync="primaryRole.value"
                        :scope.sync="primaryRole.scope" />
        </section>
 </template>
index 56cbb2ba515becfe96f977b1221fcadd97328e8e..a03063044fb0f2de55e1f6bcc7dfff92547b544d 100644 (file)
@@ -21,8 +21,7 @@
 -->
 
 <template>
-       <button
-               :disabled="disabled"
+       <button :disabled="disabled"
                v-on="$listeners">
                <span class="icon icon-add" />
                {{ t('settings', 'Add') }}
index 6d5dc0f2529c15ec2e6209a3fdc26e9a9af0995d..b14bc5165b5f61d82bc75ae4bb229f03993de7be 100644 (file)
@@ -21,8 +21,7 @@
 -->
 
 <template>
-       <Actions
-               :class="{ 'federation-actions': !additional, 'federation-actions--additional': additional }"
+       <Actions :class="{ 'federation-actions': !additional, 'federation-actions--additional': additional }"
                :aria-label="ariaLabel"
                :default-icon="scopeIcon"
                :disabled="disabled">
index cba189a844e64513a5c307add0665bea5fb60d18..f98d9bc7535fbf30c89025ebd95b8c04b45732cf 100644 (file)
@@ -21,8 +21,7 @@
 -->
 
 <template>
-       <ActionButton
-               :aria-label="isSupportedScope ? tooltip : tooltipDisabled"
+       <ActionButton :aria-label="isSupportedScope ? tooltip : tooltipDisabled"
                class="federation-actions__btn"
                :class="{ 'federation-actions__btn--active': activeScope === name }"
                :close-after-click="true"
index 1e6ab01dbbb60a94008ee1ffda74b699f6f606fe..4aaff5981a8014c38065da963f65ef454eb01da4 100644 (file)
 -->
 
 <template>
-       <h3
-               :class="{ 'setting-property': isSettingProperty, 'profile-property': isProfileProperty }">
+       <h3 :class="{ 'setting-property': isSettingProperty, 'profile-property': isProfileProperty }">
                <label :for="labelFor">
                        <!-- Already translated as required by prop validator -->
                        {{ accountProperty }}
                </label>
 
                <template v-if="scope">
-                       <FederationControl
-                               class="federation-control"
+                       <FederationControl class="federation-control"
                                :account-property="accountProperty"
                                :scope.sync="localScope"
                                @update:scope="onScopeChange" />
                </template>
 
                <template v-if="isEditable && isMultiValueSupported">
-                       <AddButton
-                               class="add-button"
+                       <AddButton class="add-button"
                                :disabled="!isValidSection"
                                @click.stop.prevent="onAddAdditional" />
                </template>
index 7ea277c1402e507affc353b0fc363db7646542b6..2d1f13c6b212610819b65723a755243dfa73799c 100644 (file)
@@ -43,8 +43,7 @@
        </div>
 
        <!-- User full data -->
-       <UserRowSimple
-               v-else-if="!editing"
+       <UserRowSimple v-else-if="!editing"
                :editing.sync="editing"
                :feedback-message="feedbackMessage"
                :groups="groups"
                </div>
                <!-- dirty hack to ellipsis on two lines -->
                <div v-if="user.backendCapabilities.setDisplayName" class="displayName">
-                       <form
-                               :class="{'icon-loading-small': loading.displayName}"
+                       <form :class="{'icon-loading-small': loading.displayName}"
                                class="displayName"
                                @submit.prevent="updateDisplayName">
-                               <input
-                                       :id="'displayName'+user.id+rand"
+                               <input :id="'displayName'+user.id+rand"
                                        ref="displayName"
                                        :disabled="loading.displayName||loading.all"
                                        :value="user.displayname"
@@ -89,8 +86,7 @@
                                        autocorrect="off"
                                        spellcheck="false"
                                        type="text">
-                               <input
-                                       class="icon-confirm"
+                               <input class="icon-confirm"
                                        type="submit"
                                        value="">
                        </form>
index 417b209fe2dd27629a2ff0cc1bb5b62d3c1b0413..50ed78a0bc7c675cb88e48bfe6c9a8fa9af95174 100644 (file)
@@ -1,6 +1,5 @@
 <template>
-       <div
-               class="row"
+       <div class="row"
                :class="{'disabled': loading.delete || loading.disable}"
                :data-id="user.id">
                <div class="avatar" :class="{'icon-loading-small': loading.delete || loading.disable || loading.wipe}">
@@ -35,8 +34,7 @@
                <div class="userQuota">
                        <div class="quota">
                                {{ userQuota }} ({{ usedSpace }})
-                               <progress
-                                       class="quota-user-progress"
+                               <progress class="quota-user-progress"
                                        :class="{'warn': usedQuota > 80}"
                                        :value="usedQuota"
                                        max="100" />
@@ -65,8 +63,7 @@
                                        </ActionButton>
                                </Actions>
                                <div class="userPopoverMenuWrapper">
-                                       <button
-                                               v-click-outside="hideMenu"
+                                       <button v-click-outside="hideMenu"
                                                class="icon-more"
                                                :aria-label="t('settings', 'Toggle user actions menu')"
                                                @click.prevent="toggleMenu" />
index 9dc465109965950a397d8e6100d35743924bbe62..9f9b066b8c9eaf72bdc8ee7a6d328c3ca096d370 100644 (file)
                <!-- Categories & filters -->
                <AppNavigation>
                        <template #list>
-                               <AppNavigationItem
-                                       id="app-category-your-apps"
+                               <AppNavigationItem id="app-category-your-apps"
                                        :to="{ name: 'apps' }"
                                        :exact="true"
                                        icon="icon-category-installed"
                                        :title="t('settings', 'Your apps')" />
-                               <AppNavigationItem
-                                       id="app-category-enabled"
+                               <AppNavigationItem id="app-category-enabled"
                                        :to="{ name: 'apps-category', params: { category: 'enabled' } }"
                                        icon="icon-category-enabled"
                                        :title="t('settings', 'Active apps')" />
-                               <AppNavigationItem
-                                       id="app-category-disabled"
+                               <AppNavigationItem id="app-category-disabled"
                                        :to="{ name: 'apps-category', params: { category: 'disabled' } }"
                                        icon="icon-category-disabled"
                                        :title="t('settings', 'Disabled apps')" />
-                               <AppNavigationItem
-                                       v-if="updateCount > 0"
+                               <AppNavigationItem v-if="updateCount > 0"
                                        id="app-category-updates"
                                        :to="{ name: 'apps-category', params: { category: 'updates' } }"
                                        icon="icon-download"
@@ -54,8 +50,7 @@
                                                {{ updateCount }}
                                        </AppNavigationCounter>
                                </AppNavigationItem>
-                               <AppNavigationItem
-                                       id="app-category-your-bundles"
+                               <AppNavigationItem id="app-category-your-bundles"
                                        :to="{ name: 'apps-category', params: { category: 'app-bundles' } }"
                                        icon="icon-category-app-bundles"
                                        :title="t('settings', 'App bundles')" />
 
                                <!-- App store categories -->
                                <template v-if="settings.appstoreEnabled">
-                                       <AppNavigationItem
-                                               id="app-category-featured"
+                                       <AppNavigationItem id="app-category-featured"
                                                :to="{ name: 'apps-category', params: { category: 'featured' } }"
                                                icon="icon-favorite"
                                                :title="t('settings', 'Featured apps')" />
 
-                                       <AppNavigationItem
-                                               v-for="cat in categories"
+                                       <AppNavigationItem v-for="cat in categories"
                                                :key="'icon-category-' + cat.ident"
                                                :icon="'icon-category-' + cat.ident"
                                                :to="{
@@ -81,8 +74,7 @@
                                                :title="cat.displayName" />
                                </template>
 
-                               <AppNavigationItem
-                                       id="app-developer-docs"
+                               <AppNavigationItem id="app-developer-docs"
                                        href="settings.developerDocumentation"
                                        :title="t('settings', 'Developer documentation') + ' ↗'" />
                        </template>
@@ -94,8 +86,7 @@
                </AppContent>
 
                <!-- Selected app details -->
-               <AppSidebar
-                       v-if="id && app"
+               <AppSidebar v-if="id && app"
                        v-bind="appSidebar"
                        :class="{'app-sidebar--without-background': !appSidebar.background}"
                        @close="hideAppDetails">
index bf191111853f1aee141e2297b5bd02c92e2f9974..02f55a0d3cbc68e3e3d2fb5b0a050e1aba8a9709 100644 (file)
@@ -30,8 +30,7 @@
                                @keyup.enter="showNewUserMenu"
                                @keyup.space="showNewUserMenu" />
                        <template #list>
-                               <AppNavigationItem
-                                       id="addgroup"
+                               <AppNavigationItem id="addgroup"
                                        ref="addGroup"
                                        :edit-placeholder="t('settings', 'Enter group name')"
                                        :editable="true"
@@ -40,8 +39,7 @@
                                        icon="icon-add"
                                        @click="showAddGroupForm"
                                        @update:title="createGroup" />
-                               <AppNavigationItem
-                                       id="everyone"
+                               <AppNavigationItem id="everyone"
                                        :exact="true"
                                        :title="t('settings', 'Active users')"
                                        :to="{ name: 'users' }"
@@ -50,8 +48,7 @@
                                                {{ userCount }}
                                        </AppNavigationCounter>
                                </AppNavigationItem>
-                               <AppNavigationItem
-                                       v-if="settings.isAdmin"
+                               <AppNavigationItem v-if="settings.isAdmin"
                                        id="admin"
                                        :exact="true"
                                        :title="t('settings', 'Admins')"
@@ -63,8 +60,7 @@
                                </AppNavigationItem>
 
                                <!-- Hide the disabled if none, if we don't have the data (-1) show it -->
-                               <AppNavigationItem
-                                       v-if="disabledGroupMenu.usercount > 0 || disabledGroupMenu.usercount === -1"
+                               <AppNavigationItem v-if="disabledGroupMenu.usercount > 0 || disabledGroupMenu.usercount === -1"
                                        id="disabled"
                                        :exact="true"
                                        :title="t('settings', 'Disabled users')"
@@ -76,8 +72,7 @@
                                </AppNavigationItem>
 
                                <AppNavigationCaption v-if="groupList.length > 0" :title="t('settings', 'Groups')" />
-                               <AppNavigationItem
-                                       v-for="group in groupList"
+                               <AppNavigationItem v-for="group in groupList"
                                        :key="group.id"
                                        :exact="true"
                                        :title="group.title"
@@ -87,8 +82,7 @@
                                                {{ group.count }}
                                        </AppNavigationCounter>
                                        <template slot="actions">
-                                               <ActionButton
-                                                       v-if="group.id !== 'admin' && group.id !== 'disabled' && settings.isAdmin"
+                                               <ActionButton v-if="group.id !== 'admin' && group.id !== 'disabled' && settings.isAdmin"
                                                        icon="icon-delete"
                                                        @click="removeGroup(group.id)">
                                                        {{ t('settings', 'Remove group') }}
                        </template>
                </AppNavigation>
                <AppContent>
-                       <UserList
-                               :users="users"
+                       <UserList :users="users"
                                :show-config="showConfig"
                                :selected-group="selectedGroupDecoded"
                                :external-actions="externalActions" />
index bac84e865005948481152d751ceee61e81fae623..997265a362b061eaba98cdc9efffb44742716449 100644 (file)
@@ -23,8 +23,7 @@
        <li>
                <div class="user-status-menu-item">
                        <!-- Username display -->
-                       <a
-                               v-if="!inline"
+                       <a v-if="!inline"
                                class="user-status-menu-item__header"
                                :href="profilePageLink"
                                @click="loadProfilePage">
@@ -50,8 +49,7 @@
                </div>
 
                <!-- Status management modal -->
-               <SetStatusModal
-                       v-if="isModalOpen"
+               <SetStatusModal v-if="isModalOpen"
                        @close="closeModal" />
        </li>
 </template>
index cd8865edb4314c27c80a2dc6520d82656bd8b002..09e0068f87feaf6e1a9eaf71dedbeca689e2ba98 100644 (file)
 
 <template>
        <div class="clear-at-select">
-               <span
-                       class="clear-at-select__label">
+               <span class="clear-at-select__label">
                        {{ $t('user_status', 'Clear status message after') }}
                </span>
-               <Multiselect
-                       label="label"
+               <Multiselect label="label"
                        :value="option"
                        :options="options"
                        open-direction="top"
index f5c64962b7b55d1f4ef9d4fb499726d72ca2f316..88956e6871b8ab07dd7b027b10dd498c3972c8df 100644 (file)
   -
   -->
 <template>
-       <form
-               class="custom-input__form"
+       <form class="custom-input__form"
                @submit.prevent>
-               <input
-                       ref="input"
+               <input ref="input"
                        maxlength="80"
                        :disabled="disabled"
                        :placeholder="$t('user_status', 'What is your status?')"
index c7fd4d63fedb9db539c0dd9bd1e25cd8f00a7e45..f8d5fe26be4776ef8cea9c1de54e3bd1c25618a8 100644 (file)
@@ -19,8 +19,7 @@
   -
   -->
 <template>
-       <div
-               class="predefined-status"
+       <div class="predefined-status"
                tabindex="0"
                @keyup.enter="select"
                @keyup.space="select"
index c0b53a6d650f70f438734e99a4e6b061a4710f47..cff03289715bf66b8eede3c9646e22eaf1c33ca8 100644 (file)
   -->
 
 <template>
-       <div
-               v-if="hasLoaded"
+       <div v-if="hasLoaded"
                class="predefined-statuses-list">
-               <PredefinedStatus
-                       v-for="status in predefinedStatuses"
+               <PredefinedStatus v-for="status in predefinedStatuses"
                        :key="status.id"
                        :message-id="status.id"
                        :icon="status.icon"
@@ -32,8 +30,7 @@
                        :clear-at="status.clearAt"
                        @select="selectStatus(status)" />
        </div>
-       <div
-               v-else
+       <div v-else
                class="predefined-statuses-list">
                <div class="icon icon-loading-small" />
        </div>
index 704e4ae3788ba989db15709eed418e7b6dda95b5..1e1a78203c3d9d8ff7ad282e1c0abbb08268ad5b 100644 (file)
@@ -20,8 +20,7 @@
   -->
 
 <template>
-       <Modal
-               size="normal"
+       <Modal size="normal"
                :title="$t('user_status', 'Set status')"
                @close="closeModal">
                <div class="set-status-modal">
                        </div>
                        <div class="set-status-modal__custom-input">
                                <EmojiPicker @select="setIcon">
-                                       <button
-                                               class="custom-input__emoji-button">
+                                       <button class="custom-input__emoji-button">
                                                {{ visibleIcon }}
                                        </button>
                                </EmojiPicker>
-                               <CustomMessageInput
-                                       ref="customMessageInput"
+                               <CustomMessageInput ref="customMessageInput"
                                        :message="message"
                                        @change="setMessage"
                                        @submit="saveStatus" />
                        </div>
-                       <PredefinedStatusesList
-                               @selectStatus="selectPredefinedMessage" />
-                       <ClearAtSelect
-                               :clear-at="clearAt"
+                       <PredefinedStatusesList @selectStatus="selectPredefinedMessage" />
+                       <ClearAtSelect :clear-at="clearAt"
                                @selectClearAt="setClearAt" />
                        <div class="status-buttons">
                                <button class="status-buttons__select" :disabled="isSavingStatus" @click="clearStatus">
index bc30b604a67bb1a200d1ec5c8bcd0ce44d440f74..629a28abeb57f19ee4ba23a888c2620c7e3e4fd2 100644 (file)
   -->
 
 <template>
-       <DashboardWidget
-               id="user-status_panel"
+       <DashboardWidget id="user-status_panel"
                :items="items"
                :loading="loading">
                <template #default="{ item }">
-                       <DashboardWidgetItem
-                               :main-text="item.mainText"
+                       <DashboardWidgetItem :main-text="item.mainText"
                                :sub-text="item.subText">
                                <template #avatar>
-                                       <Avatar
-                                               class="item-avatar"
+                                       <Avatar class="item-avatar"
                                                :size="44"
                                                :user="item.avatarUsername"
                                                :display-name="item.mainText"
@@ -40,8 +37,7 @@
                        </DashboardWidgetItem>
                </template>
                <template #empty-content>
-                       <EmptyContent
-                               id="user_status-widget-empty-content"
+                       <EmptyContent id="user_status-widget-empty-content"
                                icon="icon-user-status">
                                {{ t('user_status', 'No recent status changes') }}
                        </EmptyContent>
index e8cab2272d634fe279dd1b35d8b7459b93d86416..78cbaadeb8d59bfbde0705f193f037611bd1f16f 100644 (file)
@@ -22,8 +22,7 @@
 <template>
        <li :class="{ inline }">
                <div id="weather-status-menu-item">
-                       <Actions
-                               class="weather-status-menu-item__subheader"
+                       <Actions class="weather-status-menu-item__subheader"
                                :default-icon="weatherIcon"
                                :menu-title="currentWeatherMessage">
                                <ActionText v-if="gotWeather"
                                        {{ addRemoveFavoriteText }}
                                </ActionButton>
                                <ActionSeparator v-if="address && !errorMessage" />
-                               <ActionButton
-                                       icon="icon-crosshair"
+                               <ActionButton icon="icon-crosshair"
                                        :close-after-click="true"
                                        @click="onBrowserLocationClick">
                                        {{ t('weather_status', 'Detect location') }}
                                </ActionButton>
-                               <ActionInput
-                                       ref="addressInput"
+                               <ActionInput ref="addressInput"
                                        :disabled="false"
                                        icon="icon-rename"
                                        type="text"
@@ -58,8 +55,7 @@
                                        @submit="onAddressSubmit">
                                        {{ t('weather_status', 'Set custom address') }}
                                </ActionInput>
-                               <ActionButton
-                                       v-show="favorites.length > 0"
+                               <ActionButton v-show="favorites.length > 0"
                                        :icon="toggleFavoritesIcon"
                                        @click="showFavorites = !showFavorites">
                                        {{ t('weather_status', 'Favorites') }}
index 501b7a598a0f22bf743d1cfc715b5c1ca245da8a..56a7c1d0ec42fc87bceb0deb291d8989ee3501e7 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <div>
-               <Multiselect
-                       :value="currentValue"
+               <Multiselect :value="currentValue"
                        :placeholder="t('workflowengine', 'Select a file type')"
                        label="label"
                        track-by="pattern"
index 06ea8ea3bfb4c5ec300bf9a1348422f372b6b771..c9b241eddfaad1cf1e4d88bcc3f1c4746a8fd8be 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <div>
-               <Multiselect
-                       :value="currentValue"
+               <Multiselect :value="currentValue"
                        :placeholder="t('workflowengine', 'Select a request URL')"
                        label="label"
                        track-by="pattern"
index ffee4acb9a9d606ad36e57fd9e262c0b6cf2eb20..2bab6d7fed54f287f6f91e071516e5bf0e0870b5 100644 (file)
@@ -22,8 +22,7 @@
 
 <template>
        <div>
-               <Multiselect
-                       :value="currentValue"
+               <Multiselect :value="currentValue"
                        :placeholder="t('workflowengine', 'Select a user agent')"
                        label="label"
                        track-by="pattern"
index 0bf6dbfc5108689cc5c401f4cdd2750ed6b8615b..55d018677cb16e7e19240e7766f4a3131e43a840 100644 (file)
@@ -20,8 +20,7 @@
   -
   -->
 <template>
-       <div
-               :id="id"
+       <div :id="id"
                v-click-outside="clickOutsideConfig"
                :class="{ 'header-menu--opened': opened }"
                class="header-menu">
index 7cfff4bc66456ae10c4c0aee2b8d36196da0ab13..7a1f031b60c9d7643b0dfb519c1bfa965e09f1c4 100644 (file)
 -->
 
 <template>
-       <a
-               class="profile__primary-action-button"
+       <a class="profile__primary-action-button"
                :class="{ 'disabled': disabled }"
                :href="href"
                :target="target"
                rel="noopener noreferrer nofollow"
                v-on="$listeners">
-               <img
-                       class="icon"
+               <img class="icon"
                        :class="[icon, { 'icon-invert': colorPrimaryText === '#ffffff' }]"
                        :src="icon">
                <slot />
index 31f85f413d3124ad7e59856994868e0aa6241ee1..d2a297a0a37280f7368fb9cde9e980399d4927e8 100644 (file)
@@ -22,8 +22,7 @@
 
                <!-- Placeholders -->
                <li v-for="placeholder in [1, 2, 3]" :key="placeholder">
-                       <svg
-                               class="unified-search__result-placeholder"
+                       <svg class="unified-search__result-placeholder"
                                xmlns="http://www.w3.org/2000/svg"
                                fill="url(#unified-search__result-placeholder-gradient)">
                                <rect class="unified-search__result-placeholder-icon" />
index 90e96207a7570cf2677f77ea18daa2cee196666d..52d2d622a760b1e68b081747208cbac817571bd7 100644 (file)
@@ -21,8 +21,7 @@
 -->
 
 <template>
-       <button
-               class="primary"
+       <button class="primary"
                :autofocus="true"
                v-on="$listeners">
                {{ t('core', 'Install recommended apps') }}
index b87027a9e3e6657f17065f0038f333adf7ee9994..70ac8da6f55065a46e24da77708ffe45df5ecd55 100644 (file)
@@ -24,8 +24,7 @@
                <transition name="fade" mode="out-in">
                        <div v-if="!passwordlessLogin && !resetPassword && resetPasswordTarget === ''"
                                key="login">
-                               <LoginForm
-                                       :username.sync="user"
+                               <LoginForm :username.sync="user"
                                        :redirect-url="redirectUrl"
                                        :direct-login="directLogin"
                                        :messages="messages"
@@ -67,8 +66,7 @@
                        <div v-else-if="!loading && passwordlessLogin"
                                key="reset"
                                class="login-additional">
-                               <PasswordLessLoginForm
-                                       :username.sync="user"
+                               <PasswordLessLoginForm :username.sync="user"
                                        :redirect-url="redirectUrl"
                                        :inverted-colors="invertedColors"
                                        :auto-complete-allowed="autoCompleteAllowed"
index be3867c984eee20470a37f74e664005748d9bbe5..eb78e7607097a7256b99a904a2c5d7c83c22845a 100644 (file)
@@ -31,8 +31,7 @@
                                        <a v-if="isCurrentUser"
                                                class="primary profile__header__container__edit-button"
                                                :href="settingsUrl">
-                                               <PencilIcon
-                                                       class="pencil-icon"
+                                               <PencilIcon class="pencil-icon"
                                                        decorative
                                                        title=""
                                                        :size="16" />
@@ -50,8 +49,7 @@
 
                <div class="profile__content">
                        <div class="profile__sidebar">
-                               <Avatar
-                                       class="avatar"
+                               <Avatar class="avatar"
                                        :class="{ interactive: isCurrentUser }"
                                        :user="userId"
                                        :size="180"
@@ -84,8 +82,7 @@
                                                                backgroundImage: `url(${action.icon})`,
                                                                ...(colorMainBackground === '#181818' && { filter: 'invert(1)' })
                                                        }">
-                                                       <ActionLink
-                                                               :close-after-click="true"
+                                                       <ActionLink :close-after-click="true"
                                                                :icon="action.icon"
                                                                :href="action.target"
                                                                :target="action.id === 'phone' ? '_self' :'_blank'">
@@ -93,8 +90,7 @@
                                                        </ActionLink>
                                                </Actions>
                                                <template v-if="otherActions">
-                                                       <Actions
-                                                               :force-menu="true">
+                                                       <Actions :force-menu="true">
                                                                <ActionLink v-for="action in otherActions"
                                                                        :key="action.id"
                                                                        :class="{ 'icon-invert': colorMainBackground === '#181818' }"
                                        </div>
                                        <div v-if="address" class="detail">
                                                <p>
-                                                       <MapMarkerIcon
-                                                               class="map-icon"
+                                                       <MapMarkerIcon class="map-icon"
                                                                decorative
                                                                title=""
                                                                :size="16" />
                                </template>
                                <template v-else>
                                        <div class="profile__blocks-empty-info">
-                                               <AccountIcon
-                                                       decorative
+                                               <AccountIcon decorative
                                                        title=""
                                                        fill-color="var(--color-text-maxcontrast)"
                                                        :size="60" />