diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2019-03-21 04:55:23 +0900 |
|---|---|---|
| committer | Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com> | 2019-07-07 02:18:24 +0900 |
| commit | c2fc637575d2e086d8024ab404736b78a5ffbf4e (patch) | |
| tree | 4b5796006f4b7e79f1d3be1bc5bccc759565474c /src | |
| parent | fix #1442, fix #2106 (diff) | |
| download | sharkey-c2fc637575d2e086d8024ab404736b78a5ffbf4e.tar.gz sharkey-c2fc637575d2e086d8024ab404736b78a5ffbf4e.tar.bz2 sharkey-c2fc637575d2e086d8024ab404736b78a5ffbf4e.zip | |
revert
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/home/home.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/home/home.vue b/src/client/app/desktop/views/home/home.vue index a4232a90a8..527c2d52ef 100644 --- a/src/client/app/desktop/views/home/home.vue +++ b/src/client/app/desktop/views/home/home.vue @@ -39,7 +39,7 @@ </div> </div> </div> - <div class="main" :class="{ side: !customize && (widgets.left.length == 0 || widgets.right.length == 0) }"> + <div class="main" :class="{ side: widgets.left.length == 0 || widgets.right.length == 0 }"> <template v-if="customize"> <x-draggable v-for="place in ['left', 'right']" :list="widgets[place]" |