the bug happens in both noSqlBooster, and in mongoBooster
sample data :
{
"boxes": [
{
"_id": "5a1d4ba5dcdb2d1cfd18f40c",
"copiedName": "World of Leather",
"copiedDescription": "It’s hard to find great gifts for guys! Not anymore – Leathertastic features a travel toiletry bag, bottle opener, leather wallet & leather key ring. Super practical & stylish.",
"copiedDescription": "The Artsy Fartsy box will get the creative juices flowing in any budding creative, featuring a backpack, notebook and pencil case. Because let's face it - when you look the part, you feel the part!\n",
"copiedDescription": "Be prepared for all your food needs while out in the wilderness. Hungry Outdoorsman features pocket axe multi-tool, cutlery multi tool, unique water bottle, and aluminum lunch box.",
"copiedDescription": "Gentlemen's hardware is proud to introduce it's manliest multi-tool to date: the 10 - in - 1 axe multi-tool! all camping expeditions are incomplete without it",
"copiedDescription": "Gentlemen's Hardware presents its handy and stylish multitools. No feast is too much for this clever camping cutlery gadget. Includes spoon, fork, corkscrew, foil cutter, penknife and bottle opener.",
"copiedDescription": "Fire extinguisher replica water bottle with a metal casing looks just like the real thing. Great size to keep your thirst quenched all day long.",
"copiedDescription": "For someone who likes to finish a long day with a glass of cognac. Cognac Magic features a brandy guide, brandy warmer, and a four-piece cognac glass set.\n",
"copiedDescription": "Far-ranging guide to the brandies of the world. The histories of the brands, their techniques, and their tastes expertly described by renowned writer on spirits.",
"copiedDescription": "4 pc Set includes snifter, stand, candle cup and tea light candle. Just add brandy to experience the release of mouth-watering aromas and flavors.",
"copiedDescription": "For all the Golf Experts. Featuring a ball towel, groove tool, fastening straps, golf towel and golf hat. Now that’s what you call a hole in one!\n",
"copiedTitle": "Golf Club Groove Tool by VersaGolf",
"copiedDescription": "Do not buy new clubs, use the VersaGolf TruGroove tool to sharpen and clean your club grooves and extend the life of your irons and wedges.",
"copiedDescription": "This 3 pack for microfiber waffle weave golf towels are the perfect design for any golfer. Each towel is sized to be taken with you to the green.",
"copiedDescription": "Laser Golf RangeFinder with advanced Slope function is an advanced laser range finder system that rapidly provides an accurately measures distances of up to 500m",
the bug happens in both noSqlBooster, and in mongoBooster
sample data :
{
"boxes": [
{
"_id": "5a1d4ba5dcdb2d1cfd18f40c",
"copiedName": "World of Leather",
"copiedDescription": "It’s hard to find great gifts for guys! Not anymore – Leathertastic features a travel toiletry bag, bottle opener, leather wallet & leather key ring. Super practical & stylish.",
"copiedDescription": "The Artsy Fartsy box will get the creative juices flowing in any budding creative, featuring a backpack, notebook and pencil case. Because let's face it - when you look the part, you feel the part!\n",
"copiedDescription": "Be prepared for all your food needs while out in the wilderness. Hungry Outdoorsman features pocket axe multi-tool, cutlery multi tool, unique water bottle, and aluminum lunch box.",
"copiedDescription": "Gentlemen's hardware is proud to introduce it's manliest multi-tool to date: the 10 - in - 1 axe multi-tool! all camping expeditions are incomplete without it",
"copiedDescription": "Gentlemen's Hardware presents its handy and stylish multitools. No feast is too much for this clever camping cutlery gadget. Includes spoon, fork, corkscrew, foil cutter, penknife and bottle opener.",
"copiedDescription": "Fire extinguisher replica water bottle with a metal casing looks just like the real thing. Great size to keep your thirst quenched all day long.",
"copiedDescription": "For someone who likes to finish a long day with a glass of cognac. Cognac Magic features a brandy guide, brandy warmer, and a four-piece cognac glass set.\n",
"copiedDescription": "Far-ranging guide to the brandies of the world. The histories of the brands, their techniques, and their tastes expertly described by renowned writer on spirits.",
"copiedDescription": "4 pc Set includes snifter, stand, candle cup and tea light candle. Just add brandy to experience the release of mouth-watering aromas and flavors.",
"copiedDescription": "For all the Golf Experts. Featuring a ball towel, groove tool, fastening straps, golf towel and golf hat. Now that’s what you call a hole in one!\n",
"copiedTitle": "Golf Club Groove Tool by VersaGolf",
"copiedDescription": "Do not buy new clubs, use the VersaGolf TruGroove tool to sharpen and clean your club grooves and extend the life of your irons and wedges.",
"copiedDescription": "This 3 pack for microfiber waffle weave golf towels are the perfect design for any golfer. Each towel is sized to be taken with you to the green.",
"copiedDescription": "Laser Golf RangeFinder with advanced Slope function is an advanced laser range finder system that rapidly provides an accurately measures distances of up to 500m",
Could you please give me the detailed steps and sample script to recall the issue?
Could you please give me the detailed steps and sample script to recall the issue?
I'm trying to select the 4th item and, the third is highlihted, and if i click, the third one that expand.
i'm using 3 version, 3.4.0, 3.4.2, and 3.4.4.
on version 3.4.4, this issue is not happening.
thanks for the support.
I'm trying to select the 4th item and, the third is highlihted, and if i click, the third one that expand.
i'm using 3 version, 3.4.0, 3.4.2, and 3.4.4.
on version 3.4.4, this issue is not happening.
thanks for the support.
This question is related to the specific data, Could you please make a few test docs that can reproduce the problem for me?
This question is related to the specific data, Could you please make a few test docs that can reproduce the problem for me?
experiencing the same issue
when preforming an aggregation operation, the UI of the results tree acts weird.
my query looks like this:
db.boxes.aggregate([
{$match:{published:true}},
{$project:{"products.variants.url":1}},
{$unwind:"$products"},
{$unwind:"$products.variants"}
])
and a "Box" document looks like this:
const BoxSchema = new mongoose.Schema({
name: {type:String, trim:true},
description:{type:String, trim:true},
copiedDescription: {type:String, trim:true},
boxImage:{
type: String,
default: null
},
gridImage:{
type: String,
default: null
},
cardGridImage:{
type: String,
default: null
},
createdBy: String,
products:
experiencing the same issue
when preforming an aggregation operation, the UI of the results tree acts weird.
my query looks like this:
db.boxes.aggregate([
{$match:{published:true}},
{$project:{"products.variants.url":1}},
{$unwind:"$products"},
{$unwind:"$products.variants"}
])
and a "Box" document looks like this:
const BoxSchema = new mongoose.Schema({
name: {type:String, trim:true},
description:{type:String, trim:true},
copiedDescription: {type:String, trim:true},
boxImage:{
type: String,
default: null
},
gridImage:{
type: String,
default: null
},
cardGridImage:{
type: String,
default: null
},
createdBy: String,
products:
Thank you for your feedback.
We have worked out a new test build to resolve the issue, please download it and give it a try.
Win: https://s3.mongobooster.com/download/releasesv4/nosqlbooster4mongo-4.5.3.exe
Thank you for your feedback.
We have worked out a new test build to resolve the issue, please download it and give it a try.
Win: https://s3.mongobooster.com/download/releasesv4/nosqlbooster4mongo-4.5.3.exe
Replies have been locked on this page!