From 4c57ff750178effd13f5246fb457689673a9427e Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Fri, 13 Jun 2014 08:48:29 -0700 Subject: [PATCH] Fixed LevelComponent search collection in level editor. --- app/collections/ComponentsCollection.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/collections/ComponentsCollection.coffee b/app/collections/ComponentsCollection.coffee index 1f930576b..32f2748ca 100644 --- a/app/collections/ComponentsCollection.coffee +++ b/app/collections/ComponentsCollection.coffee @@ -2,5 +2,5 @@ LevelComponent = require 'models/LevelComponent' CocoCollection = require 'collections/CocoCollection' module.exports = class ComponentsCollection extends CocoCollection - url: '/db/level.component/search' + url: '/db/level.component' model: LevelComponent