diff options
author | Grigorii K. Shartsev <me@shgk.me> | 2024-02-21 22:12:38 +0100 |
---|---|---|
committer | Grigorii K. Shartsev <me@shgk.me> | 2024-03-01 11:19:30 +0100 |
commit | f500a0f87fccb4b77c160c91dff3d5b6cd0642b9 (patch) | |
tree | fbef9248ab0d1a874ba2829798f4c5a4e43ca41e /apps/updatenotification | |
parent | 4eefeba57eed13a717392278ae201699a27c6b29 (diff) | |
download | nextcloud-server-f500a0f87fccb4b77c160c91dff3d5b6cd0642b9.tar.gz nextcloud-server-f500a0f87fccb4b77c160c91dff3d5b6cd0642b9.zip |
chore(updatenotification): lint
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
Diffstat (limited to 'apps/updatenotification')
-rw-r--r-- | apps/updatenotification/src/components/UpdateNotification.vue | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index 16a98799a86..0dc0188cb2c 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -85,7 +85,11 @@ </template> <template v-else> {{ t('updatenotification', 'Your version is up to date.') }} - <a :title="lastCheckedOnString" :aria-label="lastCheckedOnString" href="https://nextcloud.com/changelog/" class="icon-info details" target="_blank"></a> + <a :title="lastCheckedOnString" + :aria-label="lastCheckedOnString" + href="https://nextcloud.com/changelog/" + class="icon-info details" + target="_blank" /> </template> <template v-if="!isDefaultUpdateServerURL"> @@ -131,8 +135,8 @@ <em v-html="noteDelayedStableString" /> </p> - <NcSelect v-model="notifyGroups" - id="notify-members-settings-select-wrapper" + <NcSelect id="notify-members-settings-select-wrapper" + v-model="notifyGroups" :input-label="t('updatenotification', 'Notify members of the following groups about available updates:')" :options="groups" :multiple="true" @@ -320,7 +324,7 @@ export default { }, watch: { - notifyGroups(selectedOptions) { + notifyGroups() { if (!this.enableChangeWatcher) { // The first time is when loading the app this.enableChangeWatcher = true |