Skip to content

Commit

Permalink
Merge pull request #11 from HBPMedical/dev
Browse files Browse the repository at this point in the history
Fixes for MIP 6.5 release
  • Loading branch information
M4n0x authored Dec 22, 2021
2 parents c12a407 + 1365819 commit ff00b33
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 16 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# Changelog
## 2021/10/08

## 8.0.1 - 2021/12/22

- Updated Login Page links
- Integrated new portal backend experiment status logic
## 8.0.0 - 2021/12/21

- Formula UI
- Interaction and transformation operation on contiunous data
- Integrated for Descriptive Statistics and Logistic Regression
- GraphQL type definitions available for frontend
- Added Storybook.
- Table and GroupTable visual components.
- Table and GroupTable visual components.
- Integrated new Descriptive Statistics output
- Draft Formula UI
- GraphQL implementation for Metadata
- GraphQL implementation for Descriptive Statistics

Expand Down
11 changes: 6 additions & 5 deletions src/components/API/Experiment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,12 @@ class Experiment extends Container<State> {
...experiment,
status: 'error',
result: [
{
type: MIME_TYPES.ERROR,
data: 'An unknown error occured. Please retry in a moment'
},
...(experiment?.result || [])
...(experiment?.result ?? [
{
type: MIME_TYPES.ERROR,
data: 'An unknown error occured. Please retry in a moment'
}
])
]
};
}
Expand Down
4 changes: 3 additions & 1 deletion src/components/API/Mining.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,9 @@ class Mining extends Container<MiningState> {
return this.setState({
histograms: {
data: undefined,
error: response.data.message,
error:
response.data.message ??
(mining.result ? mining.result[0].data : 'unknown error occured'),
loading: false
}
});
Expand Down
4 changes: 2 additions & 2 deletions src/components/App/Container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ class AppContainer extends React.Component<any, State> {
}
} catch (e) {
appConfig = {
instanceName: 'MIP 6.4 Development',
version: 'dev 6.4',
instanceName: 'MIP 6.5 Development',
version: 'dev 6.5',
datacatalogueUrl: undefined
};

Expand Down
10 changes: 5 additions & 5 deletions src/components/UI/LoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ export default (): JSX.Element => {
user management system.
</p>
<p className="lead">
For detailed information go to the MIP on the{' '}
For detailed information:{' '}
<a
href="https://ebrains.eu/"
href="https://ebrains.eu/service/medical-informatics-platform/"
target="_blank"
rel="noopener noreferrer"
>
Expand All @@ -79,7 +79,7 @@ export default (): JSX.Element => {
<li>
General introduction:{' '}
<a
href="https://mip.ebrains.eu/documentation/Deployment%20Pack/1"
href="https://github.com/HBPMedical/mip-docs/blob/master/deployment-pack/executive-summary.md"
target="_blank"
rel="noopener noreferrer"
>
Expand All @@ -99,7 +99,7 @@ export default (): JSX.Element => {
<li>
Available algorithms: Description of{' '}
<a
href="https://mip.ebrains.eu/documentation/Technical%20Documents/11"
href="https://github.com/HBPMedical/mip-docs/blob/master/algorithms.md"
target="_blank"
rel="noopener noreferrer"
>
Expand All @@ -111,7 +111,7 @@ export default (): JSX.Element => {
</li>
<li>
<a
href="https://mip.ebrains.eu/documentation/Deployment%20Pack/9"
href="https://github.com/HBPMedical/mip-docs/blob/master/deployment-pack/faq.md"
target="_blank"
rel="noopener noreferrer"
>
Expand Down

0 comments on commit ff00b33

Please sign in to comment.