瀏覽代碼

Show all custom-items to all pros (and not only to creator)

Vijayakrishnan 4 年之前
父節點
當前提交
f259232e79
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/Models/Pro.php

+ 1 - 1
app/Models/Pro.php

@@ -90,6 +90,6 @@ class Pro extends Model
     }
 
     public function canvasCustomItems($_key) {
-        return ClientCanvasDataCustomItem::where('key', $_key)->where('pro_id', $this->id)->get();
+        return ClientCanvasDataCustomItem::where('key', $_key)->get();
     }
 }