error page requesting a tutorial that does not (longer) exist

This commit is contained in:
Delucse
2020-09-02 11:43:17 +02:00
parent bcc4c35c9e
commit ccf901d20b
10 changed files with 78 additions and 21 deletions
+2 -2
View File
@@ -58,10 +58,10 @@ export const onChangeWorkspace = (event) => (dispatch, getState) => {
export const clearStats = () => (dispatch) => {
var stats = {
create: 0,
create: -1, // initialXML is created automatically, Block is not part of the statistics
change: 0,
delete: 0,
move: 0
move: -1 // initialXML is moved automatically, Block is not part of the statistics
};
dispatch({
type: CLEAR_STATS,