diff options
author | Johannes Zellner <johannes@cloudron.io> | 2017-02-09 15:18:11 +0100 |
---|---|---|
committer | Johannes Zellner <johannes@cloudron.io> | 2017-02-09 15:18:11 +0100 |
commit | b5d7d8f2f6bdf65bb25a892d555e0c77bc2f2aea (patch) | |
tree | 3022df5f3e498fcba037e4f66ebf07a061ff07eb | |
parent | 906f293ea74cd72252f2da71b40b9f792e8621ba (diff) | |
download | Surfer-b5d7d8f2f6bdf65bb25a892d555e0c77bc2f2aea.tar.gz Surfer-b5d7d8f2f6bdf65bb25a892d555e0c77bc2f2aea.tar.zst Surfer-b5d7d8f2f6bdf65bb25a892d555e0c77bc2f2aea.zip |
Set correct colspan for empty folder label
-rw-r--r-- | frontend/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/index.html b/frontend/index.html index 4d94a83..5374339 100644 --- a/frontend/index.html +++ b/frontend/index.html | |||
@@ -172,7 +172,7 @@ | |||
172 | </thead> | 172 | </thead> |
173 | <tbody> | 173 | <tbody> |
174 | <tr v-show="entries.length === 0"> | 174 | <tr v-show="entries.length === 0"> |
175 | <th><i>Empty folder</i></th> | 175 | <th colspan="5"><i>Empty folder</i></th> |
176 | </tr> | 176 | </tr> |
177 | <tr v-for="entry in entries" v-on:click="open(entry)" class="hand"> | 177 | <tr v-for="entry in entries" v-on:click="open(entry)" class="hand"> |
178 | <th> | 178 | <th> |