From 8f397e395dac0b2e9db93137a7ab11d1aee361c9 Mon Sep 17 00:00:00 2001 From: SAM LUDFORD Date: Thu, 23 May 2019 11:31:16 +0100 Subject: [PATCH] list of list of blueprints flattened into single list --- src/lib/Controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Controller.js b/src/lib/Controller.js index b9e9351..970e6f2 100644 --- a/src/lib/Controller.js +++ b/src/lib/Controller.js @@ -16,7 +16,7 @@ class Controller { blueprints () { return Object.keys(this.fetchers).map( sheet => this.fetchers[sheet].blueprints - ) + ).reduce((acc, curr) => acc.concat(curr)) } update () {