Fixed date fallback in scene tile.
This commit is contained in:
parent
c134416b46
commit
978dcbaa25
|
@ -118,10 +118,9 @@
|
|||
:datetime="scene.effectiveDate.toISOString()"
|
||||
class="ellipsis compact-show"
|
||||
>{{ formatDate(scene.effectiveDate, {
|
||||
day: 'MMM d, y',
|
||||
month: 'MMM y',
|
||||
year: 'y',
|
||||
}[scene.datePrecision]) }}</time>
|
||||
}[scene.datePrecision] || 'MMM d, y') }}</time>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
|
@ -812,6 +811,7 @@ function copySummary() {
|
|||
|
||||
@media(--small-10) {
|
||||
.banner {
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
@ -835,7 +835,15 @@ function copySummary() {
|
|||
}
|
||||
|
||||
.album {
|
||||
display: none;
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
overflow-x: auto;
|
||||
height: 8rem;
|
||||
}
|
||||
|
||||
.photo-container {
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.header {
|
||||
|
|
Loading…
Reference in New Issue