Merge pull request #3877 from nextcloud/dependabot/npm_and_yarn/nextcloud/vue-2.2.0

This commit is contained in:
dependabot-preview[bot] 2020-07-06 11:34:13 +00:00 коммит произвёл GitHub
Родитель e5c608d407 fb2e73e65d
Коммит 2249dcd075
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 16 добавлений и 14 удалений

6
package-lock.json сгенерированный
Просмотреть файл

@ -3926,9 +3926,9 @@
}
},
"@nextcloud/vue": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-2.1.0.tgz",
"integrity": "sha512-x6reE5GSk/exYuGPCqkw8ITWBDGfBkenTyNYRZYmyw1XLEW8M7UQgQc1EaYY3mhcIanf3aix8q9Rad7kK6nmoQ==",
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-2.2.0.tgz",
"integrity": "sha512-F7KA39DrBQT/IFY42rqfcA0NvOqQ06PUtI6Htph5quXXgXdvqIqRSb+w2/aWkmprKwHRaBMtCX3Dxrd+uGdqpw==",
"requires": {
"@nextcloud/auth": "^1.2.3",
"@nextcloud/axios": "^1.3.2",

Просмотреть файл

@ -26,7 +26,7 @@
"@nextcloud/l10n": "^1.3.0",
"@nextcloud/moment": "^1.1.1",
"@nextcloud/router": "^1.1.0",
"@nextcloud/vue": "^2.1.0",
"@nextcloud/vue": "^2.2.0",
"attachmediastream": "^2.1.0",
"crypto-js": "^4.0.0",
"debounce": "^1.2.0",

Просмотреть файл

@ -31,7 +31,7 @@
<NewGroupConversation
v-if="canStartConversations" />
</div>
<ul class="left-sidebar__list">
<template #list class="left-sidebar__list">
<Caption v-if="isSearching"
:title="t('spreed', 'Conversations')" />
<li>
@ -81,16 +81,18 @@
<Hint v-if="contactsLoading" :hint="t('spreed', 'Loading')" />
<Hint v-else :hint="t('spreed', 'No search results')" />
</template>
</ul>
</template>
<AppNavigationSettings>
<label>{{ t('spreed', 'Default location for attachments') }}</label>
<input
type="text"
:value="attachmentFolder"
:disabled="attachmentFolderLoading"
@click="selectAttachmentFolder">
</AppNavigationSettings>
<template #footer>
<AppNavigationSettings>
<label>{{ t('spreed', 'Default location for attachments') }}</label>
<input
type="text"
:value="attachmentFolder"
:disabled="attachmentFolderLoading"
@click="selectAttachmentFolder">
</AppNavigationSettings>
</template>
</AppNavigation>
</template>