Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
fix: remove undefined topics
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Feb 7, 2018
1 parent c715d64 commit 1070e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ export class Config implements IConfig {
get topics(): Topic[] {
let topics: Topic[] = []
for (let plugin of this.plugins) {
for (let topic of plugin.topics) {
for (let topic of compact(plugin.topics)) {
let existing = topics.find(t => t.name === topic.name)
if (existing) {
existing.description = topic.description || existing.description
Expand Down

0 comments on commit 1070e57

Please sign in to comment.