Fix accounts list scroll

This commit is contained in:
Lukas Hirt
2020-11-20 10:03:55 +01:00
parent 0ea04c02f9
commit 7f7b0e5421
2 changed files with 9 additions and 2 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
<template>
<div>
<div class="uk-flex uk-flex-column" id="accounts-app">
<div class="uk-flex uk-flex-column uk-height-1-1" id="accounts-app">
<template v-if="isInitialized">
<div class="oc-app-bar">
<accounts-batch-actions
@@ -10,7 +10,7 @@
/>
<accounts-create v-else />
</div>
<oc-grid class="uk-height-1-1 uk-flex-1 uk-overflow-auto">
<oc-grid class="uk-flex-1 uk-overflow-auto">
<div class="uk-width-expand">
<accounts-list :accounts="accounts" />
</div>
@@ -0,0 +1,7 @@
Bugfix: Enable scrolling in accounts list
Tags: accounts
We've fixed the accounts list to enable scrolling.
https://github.com/owncloud/ocis/pull/909