diff --git a/resources/assets/js/components/StoryTimelineComponent.vue b/resources/assets/js/components/StoryTimelineComponent.vue
index 397d091b5..9a4051c2e 100644
--- a/resources/assets/js/components/StoryTimelineComponent.vue
+++ b/resources/assets/js/components/StoryTimelineComponent.vue
@@ -1,7 +1,7 @@
@@ -79,17 +79,17 @@
#storyContainer .story {
margin-right: 2rem;
width: 100%;
- max-width: 64px;
+ max-width: 60px;
}
.stories.carousel .story > .item-link > .item-preview {
- height: 64px;
+ height: 60px;
}
#zuck-modal.with-effects {
width: 100%;
}
.stories.carousel .story > .item-link > .info .name {
- font-weight: 600;
- font-size: 12px;
+ font-weight: 500;
+ font-size: 11px;
}
.stories.carousel .story > .item-link > .info {
}
diff --git a/resources/assets/js/components/Timeline.vue b/resources/assets/js/components/Timeline.vue
index db80c08c4..dff242f9a 100644
--- a/resources/assets/js/components/Timeline.vue
+++ b/resources/assets/js/components/Timeline.vue
@@ -7,7 +7,7 @@
-
+
@@ -1533,8 +1533,9 @@
}
}).then(res => {
let self = this;
+ let tids = this.feed.map(status => status.id);
let data = res.data.filter(d => {
- return d.id > self.min_id
+ return d.id > self.min_id && tids.indexOf(d.id) == -1;
});
let ids = data.map(status => status.id);
let max = Math.max(...ids).toString();