New "Call Logs" page feedback
# support
m
1) When I open the link, it does not show a new pop-up with call information. List of calls is being displayed only. Example: https://dashboard.vapi.ai/calls/12c2bac7-7e1f-4685-9be0-4bddd2f3d73e 2) Search by ID does not work. For example, I copy-paste 12c2bac7-7e1f-4685-9be0-4bddd2f3d73e and can not find anything. 3) Pop-up with call information is too small. It is noticeable especially on ultrawide screens (see the attached screenshot demonstating layout) https://cdn.discordapp.com/attachments/1261670932796145694/1261670933064847401/image.png?ex=6693ce1f&is=66927c9f&hm=16a0ae281a80e2817d0a03487ec6a5dc2d45188a1672806dc96d3081646ce716&
v
@Moody Reaper I'm here to help you with these issues: 1) If the call information pop-up isn't appearing when you open the link, it could be due to a temporary glitch or a browser issue. Please try refreshing the page or clearing your browser cache to see if that resolves the problem. If the issue persists, please check if pop-ups are enabled in your browser settings, as they might be blocked. 2) For the search by ID issue, please ensure that you are entering the correct call ID in the search field. If the correct ID does not yield results, there might be an issue with the search function. In this case, I would recommend reaching out to the support team for further assistance. 3) Regarding the pop-up size on ultrawide screens, I understand that it can be inconvenient if the layout does not scale properly. This feedback is valuable, and I suggest reporting it to the development team so they can consider making adjustments to accommodate different screen sizes. If you need further assistance with any of these issues or if you'd like to report the layout concern, please let me know, and I can guide you through the process or escalate the matter to the support team.
You can continue this conversation by mentioning me in the message.
@User
Guys, the new page is literally unusable. I got link to the following recent call https://dashboard.vapi.ai/calls/81de40d8-153c-48a3-b5fd-a18e50adb2f3 and then can not get any details since pup-up is not being displayed Search does not work as well for some call IDs for some reason... https://cdn.discordapp.com/attachments/1261670932796145694/1262346879971360828/image.png?ex=669643a5&is=6694f225&hm=33351208751d19c2c67e48a84ef26466953ee8ebf390ff3a7abc37025373f9dd&
Seems that search does not work for older entities because it is presented on frontend side. 1) Frontend gets call list by calling: https://api.vapi.ai/v2/call?limit=100 2) Frontend does not send any additional requests and rearches locally among these 100 entities It is not correct.
Seems like pagination on frontend does not work as well. For example, I am on page no. 2 the then press "Next". The following request is being sent: GET https://api.vapi.ai/v2/call?limit=100&page=15 Seems like frontend calculates of preserves current page number incorrectly
s
I will pass this. 1. modal not displaying for call resource 2. search by id is not working for older entities 3. popup width for ultrawide screen
for pagination did you pressed the next button, after traversing few pages then going back on page 2 or right after the page 2?
m
@Shubham Bajaj, I don't remember exactly
s
I tried reproducing same, but couldn’t.
m
@Shubham Bajaj, for example: - Open "Calls Logs" page: https://dashboard.vapi.ai/calls - GET https://api.vapi.ai/v2/call?limit=100&page=1 is being called taking a lot of time (why?) - Open DevTools, Network and take a look on
GET /call
endpoint - Click "Next" button and take a look on requests being sent, go up to page number 5 (on frontend): - You will end up with GET https://api.vapi.ai/v2/call?limit=100&page=3 (for example) - Go back by pressing "Previous" button on by pressing any previous page number - Then press "Next" again: - Frontend will send the following request: GET https://api.vapi.ai/v2/call?limit=100&page=4 (being incremented) Also, pagination on frontend completely mismatches: page contains 15 calls but, for some reason, frontend calls https://api.vapi.ai/v2/call?limit=100 for each page which is not correct. Please, test it properly: go next and back, try to define when and why frontend needs to call this endpoint, etc.
s
- just checked ideally limit should be less i will check with team - yes the page number on ui and pagination page are out of sync - yes on next the page number is incremented and i am guessing on ui pagination logic is different, will talk with the team. - this i have to confirm what's the reasoning behind this.
i have understood all of your points and will pass it.
3 Views