diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-07-24 23:43:14 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-07-24 23:43:14 +0900 |
| commit | 03ce87d710b9194a43370dd1736e38b2dde2aa55 (patch) | |
| tree | e677de10794af095f7ece821a4e55f4492468d09 /src/client/app/common/views/widgets/slideshow.vue | |
| parent | wip (diff) | |
| download | misskey-03ce87d710b9194a43370dd1736e38b2dde2aa55.tar.gz misskey-03ce87d710b9194a43370dd1736e38b2dde2aa55.tar.bz2 misskey-03ce87d710b9194a43370dd1736e38b2dde2aa55.zip | |
wip
Diffstat (limited to 'src/client/app/common/views/widgets/slideshow.vue')
| -rw-r--r-- | src/client/app/common/views/widgets/slideshow.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/widgets/slideshow.vue b/src/client/app/common/views/widgets/slideshow.vue index e1c28f5115..2eede03786 100644 --- a/src/client/app/common/views/widgets/slideshow.vue +++ b/src/client/app/common/views/widgets/slideshow.vue @@ -72,7 +72,7 @@ export default define({ if (this.images.length == 0) return; const index = Math.floor(Math.random() * this.images.length); - const img = `url(${ this.images[index].url }?thumbnail&size=1024)`; + const img = `url(${ this.images[index].url })`; (this.$refs.slideB as any).style.backgroundImage = img; |