2,531,256 questions
0
votes
0
answers
6
views
Kendo.js UID bug
I have a bug in my UI where when using UID as name of the column, the value changes from string to a random guid which is taken from data-uid:
UID looks like this:
uid: 8f7e2416-df36-4f52-a1ab-...
-1
votes
0
answers
11
views
How to get results from an async Javascript script using C# and Microsoft WebView2 control?
I have the following Javascript script:
async function getIPAddress() {
var thisFuncName = arguments.callee.toString().match(/function ([^\(]+)/)[1];
var retValue = {
'Result': true,
...
-1
votes
0
answers
20
views
Error: Element type is invalid. Received a promise that resolves to: undefined. Lazy element type must resolve to a class or function
I am trying to create and publish nextjs ui component Hsciifontpicker inside a [npmjs lib : hsciifontlib].
can I use next/font/local=>localFont function in a npmjs library component ?
...
0
votes
0
answers
25
views
How do I correctly send a signature to verify in Inngest?
I'm getting an "Invalid x-inngest-signature provided" error when I try to send an event to my Inngest server
Here is my server.js
import { config } from "dotenv";
import express ...
0
votes
1
answer
17
views
Sentry Logger [warn]: Discarded session because of missing or non-string release
As per the Sentry setup guide for a React FE project
import * as Sentry from "@sentry/react";
Sentry.init({
dsn: "SOME_SENTRY_DNS",
// Setting this option to true will send ...
0
votes
0
answers
15
views
APEX Interactive Grid data not being captured by JavaScript function
I'm having trouble capturing data from multiple Interactive Grids in Oracle APEX Oracle APEX 24.2.3 using JavaScript. When I try to save the data, I'm getting undefined values for all records.
Here's ...
-5
votes
0
answers
27
views
Bulk upload using playwright [closed]
How can I use the keyboard to upload multiple images at once using playwright? Can someone please show me where in the documentation I can learn about how to do so? Thanks!
0
votes
0
answers
30
views
Nextjs 15 tailwind PWA: env(safe-area-inset-*) not working
I am trying to add padding to the bottom of my pwa to prevent items going behind the phone navigation. I have tried different solutions from others (custom css, adding a custom plugin to tailwind....
0
votes
2
answers
37
views
Is there some useEffect and useState behavior that explains why only one of these instances work?
I'm using useEffect to fetch data. This data is passed to a state, then used as a prop for a component to render/populate accordingly. Here is the code that works:
const [projects, setProjects] = ...
0
votes
0
answers
13
views
launchWebAuthFlow in Chrome extension: OAuth2 window and popup close after user clicks username
Chrome extension using manifest v3 with popup written with React.
service-worker.js
async function startJoltAuth(sendResponse, force_refresh = false) {
var manifest = chrome.runtime.getManifest();
...
2
votes
1
answer
19
views
Ublock Origin replace-node-text
I'm on a website with an overly sensitive profanity filter that sticks periods in the middle of words like doc.u.ments or as.sas.sin. There is no option to turn off the profanity filter. I wanted to ...
1
vote
0
answers
17
views
Demuxing an RTP audio stream using WebRTC API
I am developing a voice chat application.
After the server receives an RTP packet from a client, it sends this packet unmodified to all the other clients. Each client has a different SSRC.
The ...
2
votes
2
answers
51
views
How can I update an object inside an array that's been filtered?
I'm working on this Frontend Mentor challenge and I have most of the functionality down. I can filter the data by it's isActive property to display the correct items based on whether they're active or ...
0
votes
0
answers
29
views
In FE existing screen, I have added field CGT,it's dropdown yes or no,it has to be no by default,when changed to yes,3 extra fields has to be enabled
I have added old html and javascript code as my organisation uses that, but when I'm hovering on that drop-down option in frontend it's directly becoming 0, and when I click on yes the enabled fields ...
0
votes
0
answers
11
views
How to style unselected line points in Mapbox draw gl?
Initially, when drawing a line in Mapbox GL Draw, the vertex points are only visible when the line is selected. However, I want the points to remain visible even when the line is unselected, and to ...