mirror of
https://github.com/datashard/snapshot.git
synced 2024-11-21 21:52:28 +00:00
Better readability in Snapshot Difference (#10)
Makes the Readability of the JSON much easier, because it's not properly indented
This commit is contained in:
parent
4316f5e1c2
commit
253a4e44ea
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ const set_snapshot = (
|
||||||
};
|
};
|
||||||
|
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Snapshot Difference.\nPlease Update the Snapshot\n\n\t${json.message}`
|
`Snapshot Difference found.\nPlease Update the Snapshot\n\n${json.message.replaceAll(' ', ' ')}`
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue