Skip to content

Commit

Permalink
chore(updatenotification): lint
Browse files Browse the repository at this point in the history
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
  • Loading branch information
ShGKme committed Mar 1, 2024
1 parent 4eefeba commit f500a0f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions apps/updatenotification/src/components/UpdateNotification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -320,7 +324,7 @@ export default {
},
watch: {
notifyGroups(selectedOptions) {
notifyGroups() {
if (!this.enableChangeWatcher) {
// The first time is when loading the app
this.enableChangeWatcher = true
Expand Down

0 comments on commit f500a0f

Please sign in to comment.