Purging expired notifications and alerts. Fixed manticore stash sync.
This commit is contained in:
@@ -281,6 +281,22 @@ function toggleFilterCombined() {
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span
|
||||
v-for="scene in alert.scenes"
|
||||
:key="`alert-${alert.id}-${scene.id}`"
|
||||
class="alert-scene"
|
||||
>
|
||||
<time
|
||||
:datetime="scene.date.toISOString()"
|
||||
class="alert-date"
|
||||
>{{ format(scene.date, 'yyyy-MM-dd') }}</time>
|
||||
|
||||
<a
|
||||
:href="`/scene/${scene.id}/${scene.slug}`"
|
||||
class="alert-value alert-title ellipsis link"
|
||||
>{{ scene.title }}</a>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="alert-meta">
|
||||
@@ -476,6 +492,16 @@ function toggleFilterCombined() {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.alert-scene {
|
||||
display: flex;
|
||||
gap: .5rem;
|
||||
padding: 0 .5rem;
|
||||
}
|
||||
|
||||
.alert-date {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.alert-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
Reference in New Issue
Block a user