Cleanup radar files

This commit is contained in:
Tom Raithel
2017-02-16 10:45:28 +01:00
parent 4577385b5f
commit b5900ce3cc
13 changed files with 1 additions and 32 deletions

View File

@@ -1,5 +0,0 @@
---
quadrant: methods-and-patterns
---
Foo

View File

@@ -1,9 +0,0 @@
---
title: "Grunt"
ring: adopt
quadrant: tools
---
Hier steht was altes über *Grunt*
Hier noch ein [link](http://www.google.de) zu google

View File

@@ -1,11 +0,0 @@
---
title: "React 123"
ring: adopt
quadrant: languages-and-frameworks
---
Hier steht eine Einleitung über *React* - super "cool"
Hier noch ein [link](http://www.google.de) zu google
Hier steht der Rest!

View File

@@ -1,6 +0,0 @@
---
isFeatured: false
quadrant: languages-and-frameworks
---
Foo!

View File

@@ -231,7 +231,7 @@ const flagWithIsNew = (items, allReleases) => (
); );
const isNewItem = (item, allReleases) => { const isNewItem = (item, allReleases) => {
return item.revisions[0].release === allReleases[allReleases.length-1] return item.revisions.length > 1 && item.revisions[0].release === allReleases[allReleases.length-1]
} }
const addItemToRing = (ring = [], item) => ([ const addItemToRing = (ring = [], item) => ([