Merge pull request #1277 from nextcloud/fix/faces-issues

fix faces issues
This commit is contained in:
Louis 2022-09-20 20:10:00 +02:00 committed by GitHub
commit c1b83919eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -289,7 +289,7 @@ export default {
path: file.filename,
list: this.faceFileIds.map(fileId => ({
...this.files[fileId],
basename: this.files[fileId].basename.split('-', 2)[1],
basename: this.files[fileId].basename.split('-').slice(1).join('-'),
})).filter(file => !file.sectionHeader),
loadMore: file.loadMore ? async () => await file.loadMore(true) : () => [],
canLoop: file.canLoop,
@ -405,7 +405,6 @@ export default {
align-items: center;
justify-content: space-between;
position: sticky;
top: var(--header-height);
z-index: 3;
background: var(--color-main-background);
padding: 0 64px;

View File

@ -124,7 +124,6 @@ export default {
flex-grow: 1;
display: flex;
flex-wrap: wrap;
overflow: scroll;
gap: 32px;
align-content: flex-start;
}