mirror of
https://github.com/appy-one/acebase-server.git
synced 2026-05-24 22:01:28 -06:00
[GH-ISSUE #7] Browse for specific key in webmanager doesn't return data #1
Labels
No labels
bug
enhancement
feature request
pull-request
types
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/acebase-server#1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pmioduszewski on GitHub (May 18, 2021).
Original GitHub issue: https://github.com/appy-one/acebase-server/issues/7
Originally assigned to: @appy-one on GitHub.
Hi!
// First of all, Acebase is really good project 😃 Thank U! I was looking exactly for something like this for weeks!
Today I was trying to use "browse for specific key ..." on bottom of long list of keys in webmanager and this returned me:
"node does not exist":
BUT key exist:
Node: 15.14.0 | MacOS Big Sur on M1 (11.3.1) | Browser is latest Chrome
@appy-one commented on GitHub (May 19, 2021):
It might have to do with the fact that your keys are numbers, I'll try to reproduce it. What happens if you get the value in your code? eg, does
db.ref('product/436798335').get()retrieve the right value?@pmioduszewski commented on GitHub (Jun 3, 2021):
Hi! Sorry for late response
Yes, when I use i.e
db.ref('product/436798335').get() ...it will return correct values.I've also tried:
db.ref('product/' + Number(436798335)).get() ...and it worked as expected.@appy-one commented on GitHub (Jul 7, 2021):
Just to let you know, I found what's causing it. I'll publish an update later this week that will fix it.
@appy-one commented on GitHub (Jul 8, 2021):
Published changes in
acebase-serverv1.2.3. Let me know if loading specific (numeric) keys in the webmanager is now working properly