We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1acc022 + 8077a51 commit fd6ee5fCopy full SHA for fd6ee5f
3 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "hawk.so",
3
- "version": "1.1.6",
+ "version": "1.1.7",
4
"private": true,
5
"scripts": {
6
"dev": "vite",
src/components/project/EventItemSkeleton.vue
@@ -26,6 +26,12 @@ export default {
26
height: 16px;
27
background-color: var(--color-bg-third);
28
border-radius: 9px;
29
+ animation: skeleton-pulse 1.4s ease-in-out infinite;
30
+}
31
+
32
+@keyframes skeleton-pulse {
33
+ 0%, 100% { opacity: 1; }
34
+ 50% { opacity: 0.4; }
35
}
36
37
.event-item-skeleton {
src/components/project/EventsList.vue
@@ -372,6 +372,7 @@ export default {
372
reloadDailyEvents() {
373
this.dailyEventsNextCursor = null;
374
this.noMore = false;
375
+ this.dailyEvents = [];
376
this.loadMoreEvents(true);
377
},
378
/**
0 commit comments