Fix mobile menu on users management

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2019-04-02 15:10:47 +02:00 committed by Roeland Jago Douma
parent 854cb5d3d1
commit 6bfd77d136
No known key found for this signature in database
GPG Key ID: F941078878347C0C
10 changed files with 568 additions and 256 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -160,13 +160,6 @@ __webpack_require__.r(__webpack_exports__);
//
//
/**
* Those translations will be used by the vue component but they should be shipped with the server
* t('files_sharing', 'Add to a collection')
* t('files_sharing', 'Details')
* t('files_sharing', 'Rename collection')
*/
/* harmony default export */ __webpack_exports__["default"] = ({
name: 'CollaborationView',
computed: {
@ -209,7 +202,7 @@ var render = function() {
var _c = _vm._self._c || _h
return _vm.fileId
? _c("collection-list", {
attrs: { type: "files", id: _vm.fileId, name: _vm.filename }
attrs: { type: "file", id: _vm.fileId, name: _vm.filename }
})
: _vm._e()
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -405,6 +405,8 @@ __webpack_require__.r(__webpack_exports__);
language: this.newUser.language.code
}).then(function () {
_this.resetForm();
_this.$refs.newusername.focus();
}).catch(function (error) {
_this.loading.all = false;
@ -1198,8 +1200,6 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterat
//
//
//
//
//
@ -2639,7 +2639,9 @@ var render = function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("AppContent", {
return _c(
"AppContent",
{
attrs: {
"app-name": "settings",
"navigation-class": { "icon-loading": _vm.loadingAddGroup }
@ -2879,25 +2881,31 @@ var render = function() {
]
},
proxy: true
}
])
},
{
key: "content",
fn: function() {
return [
[
_vm._v(" "),
_c("user-list", {
attrs: {
users: _vm.users,
showConfig: _vm.showConfig,
selectedGroup: _vm.selectedGroup,
externalActions: _vm.externalActions
}
})
]
},
scopedSlots: _vm._u([
{
key: "content",
fn: function() {
return undefined
},
proxy: true
}
])
})
],
1
)
}
var staticRenderFns = []
render._withStripped = true

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -56,9 +56,7 @@
</div>
</AppNavigationSettings>
</template>
<template #content>
<user-list :users="users" :showConfig="showConfig" :selectedGroup="selectedGroup" :externalActions="externalActions" />
</template>
<user-list #content :users="users" :showConfig="showConfig" :selectedGroup="selectedGroup" :externalActions="externalActions" />
</AppContent>
</template>