-
{{item.name}}
+
+
0">
+ {{item.name}}
diff --git a/src/app/pages-family/playground/playground.page.ts b/src/app/pages-family/playground/playground.page.ts
index 66e1c6f..acf3ddb 100644
--- a/src/app/pages-family/playground/playground.page.ts
+++ b/src/app/pages-family/playground/playground.page.ts
@@ -4,6 +4,7 @@ import {Router} from "@angular/router";
import {SessionDataProviderService} from "../../store/session-data-provider.service";
import {WrenchService} from "../../services/wrench.service";
import {BlogDataService} from "../../store/blog-data.service";
+import {compareNumbers} from "@angular/compiler-cli/src/version_helpers";
@Component({
selector: 'app-playground',
@@ -47,6 +48,9 @@ export class PlaygroundPage implements OnInit {
collectionsListdata:[];
sharedListData:[];
+ // totalShared:number = 0;
+ // totalCollection:number = 0;
+
paygroundData(){
@@ -65,6 +69,10 @@ export class PlaygroundPage implements OnInit {
this.collectionsListdata = this.playListTotalData.collections;
this.sharedListData = this.playListTotalData.shared;
+ // this.totalShared = this.sharedListData[0].item_list.length;
+ // this.totalCollection = this.collectionsListdata[0].item_list.length;
+//debugger;
+
console.log("playListTotalData RETURN DATA->", this.playListData);
}
);