Indent for ProductSystems
All checks were successful
E2E Testing / test (push) Successful in 1m35s

This commit is contained in:
Sebastian Böckelmann 2024-03-22 08:36:59 +01:00
parent 2416e226fc
commit 4bb37a5a18

View File

@ -65,7 +65,7 @@ export class GamesystemSerializer {
'childsystems': innerGamesystemJsonArray 'childsystems': innerGamesystemJsonArray
} }
const storedProductsystem = new StoreComponent(JSON.stringify(jsonString), fileName, ModelComponentType.GAMESYTEM) const storedProductsystem = new StoreComponent(JSON.stringify(jsonString, null, SerializeConstants.JSON_INDENT), fileName, ModelComponentType.GAMESYTEM)
storedGamesystems.push(storedProductsystem) storedGamesystems.push(storedProductsystem)
return storedGamesystems; return storedGamesystems;