mirror of
https://github.com/sismics/docs.git
synced 2025-04-19 18:06:35 +02:00
css fix
(cherry picked from commit 33aaf8afd28c73ca4f72dd57da301ac296d3e3f1)
This commit is contained in:
parent
d8d5249a23
commit
98fa89bd80
@ -288,7 +288,7 @@ public class FileResource extends BaseResource {
|
|||||||
DocumentDao documentDao = new DocumentDao();
|
DocumentDao documentDao = new DocumentDao();
|
||||||
FileDao fileDao = new FileDao();
|
FileDao fileDao = new FileDao();
|
||||||
File file = fileDao.getFile(id);
|
File file = fileDao.getFile(id);
|
||||||
if (file == null) {
|
if (file == null || file.getDocumentId() == null) {
|
||||||
throw new NotFoundException();
|
throw new NotFoundException();
|
||||||
}
|
}
|
||||||
DocumentDto documentDto = documentDao.getDocument(file.getDocumentId(), PermType.WRITE, getTargetIdList(null));
|
DocumentDto documentDto = documentDao.getDocument(file.getDocumentId(), PermType.WRITE, getTargetIdList(null));
|
||||||
|
@ -653,6 +653,10 @@ input[readonly].share-link {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
.nav > li {
|
.nav > li {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user