summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/widgets
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-07-24 23:43:14 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-07-24 23:43:14 +0900
commit03ce87d710b9194a43370dd1736e38b2dde2aa55 (patch)
treee677de10794af095f7ece821a4e55f4492468d09 /src/client/app/common/views/widgets
parentwip (diff)
downloadmisskey-03ce87d710b9194a43370dd1736e38b2dde2aa55.tar.gz
misskey-03ce87d710b9194a43370dd1736e38b2dde2aa55.tar.bz2
misskey-03ce87d710b9194a43370dd1736e38b2dde2aa55.zip
wip
Diffstat (limited to 'src/client/app/common/views/widgets')
-rw-r--r--src/client/app/common/views/widgets/photo-stream.vue2
-rw-r--r--src/client/app/common/views/widgets/slideshow.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/common/views/widgets/photo-stream.vue b/src/client/app/common/views/widgets/photo-stream.vue
index ae5924bb10..3e24c58e8e 100644
--- a/src/client/app/common/views/widgets/photo-stream.vue
+++ b/src/client/app/common/views/widgets/photo-stream.vue
@@ -5,7 +5,7 @@
<p :class="$style.fetching" v-if="fetching">%fa:spinner .pulse .fw%%i18n:common.loading%<mk-ellipsis/></p>
<div :class="$style.stream" v-if="!fetching && images.length > 0">
- <div v-for="image in images" :class="$style.img" :style="`background-image: url(${image.url}?thumbnail&size=256)`"></div>
+ <div v-for="image in images" :class="$style.img" :style="`background-image: url(${image.url})`"></div>
</div>
<p :class="$style.empty" v-if="!fetching && images.length == 0">%i18n:@no-photos%</p>
</mk-widget-container>
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;