1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-06 17:33:18 +00:00

Merge pull request #6128 from haiwen/fix-sdoc-no-history-style

fix sdoc history no result style
This commit is contained in:
杨顺强
2024-05-30 10:10:32 +08:00
committed by GitHub
2 changed files with 7 additions and 12 deletions

View File

@@ -93,11 +93,7 @@
.sdoc-file-history .sdoc-file-history-content .sdoc-file-history-viewer {
width: 100%;
min-height: 120px;
flex: 1;
background-color: #fff;
word-break: break-word;
border: 1px solid #e6e6dd;
height: calc(100vh - 50px);
}
.sdoc-file-history .sdoc-file-history-container .sdoc-file-history-content .sdoc-editor-content {
@@ -364,10 +360,6 @@
padding: 0;
}
.sdoc-file-history .sdoc-file-history-content .sdoc-file-history-viewer {
border: none;
}
.markdown-viewer-render-content {
margin: 20px;
}

View File

@@ -339,12 +339,15 @@ class SdocFileHistory extends React.Component {
const path = [0, 0, 0];
const { isShowChanges } = this.state;
this.onSelectHistoryVersion(...getCurrentAndLastVersion(path, historyGroups, isShowChanges));
} else {
this.setState({ isLoading: false });
}
}).catch((error) => {
const errorMessage = 'there has an error in server';
const isLoading = false;
this.setState({ isLoading });
this.setState({ sidePanelInitData: { isLoading, errorMessage } });
this.setState({
isLoading: false,
sidePanelInitData: { isLoading: false, errorMessage }
});
throw Error(errorMessage);
});
}