@sprucelabs/spruce-feed-view-controllers 0.0.203 → 0.0.204

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,17 +28,16 @@ export default class FeedCardViewController extends AbstractViewController {
28
28
  }
29
29
  CardVc(options) {
30
30
  const { id } = options;
31
- const sections = [
32
- {
33
- id: 'feed',
34
- feed: this.feedVc.render(),
35
- },
36
- ];
37
31
  return this.Controller('card', {
38
32
  id,
39
33
  body: {
40
34
  isBusy: true,
41
- sections,
35
+ sections: [
36
+ {
37
+ id: 'feed',
38
+ feed: this.feedVc.render(),
39
+ },
40
+ ],
42
41
  },
43
42
  });
44
43
  }
@@ -21,17 +21,16 @@ class FeedCardViewController extends heartwood_view_controllers_1.AbstractViewCo
21
21
  }
22
22
  CardVc(options) {
23
23
  const { id } = options;
24
- const sections = [
25
- {
26
- id: 'feed',
27
- feed: this.feedVc.render(),
28
- },
29
- ];
30
24
  return this.Controller('card', {
31
25
  id,
32
26
  body: {
33
27
  isBusy: true,
34
- sections,
28
+ sections: [
29
+ {
30
+ id: 'feed',
31
+ feed: this.feedVc.render(),
32
+ },
33
+ ],
35
34
  },
36
35
  });
37
36
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sprucelabs/spruce-feed-view-controllers",
3
3
  "description": "Spruce feed view controllers",
4
- "version": "0.0.203",
4
+ "version": "0.0.204",
5
5
  "skill": {
6
6
  "namespace": "feed"
7
7
  },