mirror of
https://github.com/sismics/docs.git
synced 2024-11-22 05:57:57 +01:00
css fix
This commit is contained in:
parent
3902d6361e
commit
33aaf8afd2
@ -290,7 +290,7 @@ public class FileResource extends BaseResource {
|
||||
DocumentDao documentDao = new DocumentDao();
|
||||
FileDao fileDao = new FileDao();
|
||||
File file = fileDao.getFile(id);
|
||||
if (file == null) {
|
||||
if (file == null || file.getDocumentId() == null) {
|
||||
throw new NotFoundException();
|
||||
}
|
||||
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 {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user