We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Something like this -
` handleFlowRender() { const flowElement = document.querySelector('flowruntime-flow'); // Select the element console.log('flowElement',flowElement)
// // Set individual styles // flowElement.style.backgroundColor = '#e2abab'; // flowElement.style.padding = '20px'; // flowElement.style.border = '1px solid black'; // // Or set multiple styles at once // Object.assign(flowElement.style, { // backgroundColor: 'lightblue', // padding: '20px', // border: '1px solid black' // }); }`
For some reason flowElement is always null no matter when i run this (inside renderedCallback() or using on DOMContentLoaded listener)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Something like this -
` handleFlowRender() {
const flowElement = document.querySelector('flowruntime-flow'); // Select the element
console.log('flowElement',flowElement)
For some reason flowElement is always null no matter when i run this (inside renderedCallback() or using on DOMContentLoaded listener)
The text was updated successfully, but these errors were encountered: