diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-05-22 11:16:42 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-05-22 11:16:42 +0200 |
commit | d6e1643a0e448c45f35311c3635125a2c0f39a45 (patch) | |
tree | 13d3410e35f8762be461b207b81a09883a55530c /apps/files/templates | |
parent | 542b3958580ea77879d8c941a167af75972fa60c (diff) | |
download | nextcloud-server-d6e1643a0e448c45f35311c3635125a2c0f39a45.tar.gz nextcloud-server-d6e1643a0e448c45f35311c3635125a2c0f39a45.zip |
Fix dropping files below the table
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 8cab4ce220b..b52effb1e78 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -2,7 +2,7 @@ <?php $_['appNavigation']->printPage(); ?> <div id="app-content"> <?php foreach ($_['appContents'] as $content) { ?> - <div id="app-content-<?php p($content['id']) ?>" class="hidden"> + <div id="app-content-<?php p($content['id']) ?>" class="hidden viewcontainer"> <?php print_unescaped($content['content']) ?> </div> <?php } ?> |