geer-builder 1.2.743 → 1.2.745
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/GMyPurchases.vue +1 -1
- package/GProductList.vue +4 -4
- package/package.json +1 -1
package/GMyPurchases.vue
CHANGED
package/GProductList.vue
CHANGED
|
@@ -342,7 +342,7 @@ export default {
|
|
|
342
342
|
await this.$bind('new_product_list', querry);
|
|
343
343
|
let filt = this.new_product_list.map(prod => {
|
|
344
344
|
|
|
345
|
-
if(prod.activated_only && !this.user_info
|
|
345
|
+
if(prod.activated_only && !this.user_info )
|
|
346
346
|
{
|
|
347
347
|
remove_prod_count++;
|
|
348
348
|
return false;
|
|
@@ -369,7 +369,7 @@ export default {
|
|
|
369
369
|
let loaded_new_product_remove_count = 0;
|
|
370
370
|
let filt1 = this.loaded_new_product.map(prod => {
|
|
371
371
|
|
|
372
|
-
if(prod.activated_only && !this.user_info
|
|
372
|
+
if(prod.activated_only && !this.user_info )
|
|
373
373
|
{
|
|
374
374
|
loaded_new_product_remove_count++;
|
|
375
375
|
return false;
|
|
@@ -386,7 +386,7 @@ export default {
|
|
|
386
386
|
await this.$bind('loaded_new_product', querry);
|
|
387
387
|
let filt = this.loaded_new_product.map(prod => {
|
|
388
388
|
|
|
389
|
-
if(prod.activated_only && !this.user_info
|
|
389
|
+
if(prod.activated_only && !this.user_info )
|
|
390
390
|
{
|
|
391
391
|
return false;
|
|
392
392
|
}
|
|
@@ -406,7 +406,7 @@ export default {
|
|
|
406
406
|
await this.$bind('new_product_list', querry);
|
|
407
407
|
let filt = this.new_product_list.map(prod =>
|
|
408
408
|
{
|
|
409
|
-
if(prod.activated_only && !this.user_info
|
|
409
|
+
if(prod.activated_only && !this.user_info )
|
|
410
410
|
{
|
|
411
411
|
return false;
|
|
412
412
|
}
|