Skip to content
This repository has been archived by the owner on Dec 13, 2020. It is now read-only.

Commit

Permalink
#741 & #706 Process error passing by and css fix
Browse files Browse the repository at this point in the history
  • Loading branch information
damianprzygodzki committed May 18, 2017
1 parent 2fc1728 commit f457d53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/actions/WindowActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -636,8 +636,9 @@ export function createProcess(processType, viewId, type, ids, tabId, rowId) {
throw err;
});
}
}).catch(() => {
}).catch(err => {
dispatch(setProcessSaved());
throw err;
});
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,8 @@ body {
.document-lists-wrapper {
display: flex;
flex-direction: row;
min-height: 100%;
flex-grow: 1;
}

.document-lists-wrapper > * {
Expand All @@ -429,8 +431,6 @@ body {
.document-list-included {
flex: .7;
margin-left: .1rem;
/*overflow: auto;
overflow-x: hidden;*/
}

.document-list-header {
Expand Down

0 comments on commit f457d53

Please sign in to comment.