Hello everyone, we’ve recently had to deal with an...
# ask-questions
b
Hello everyone, we’ve recently had to deal with an issue regarding Force rules that apparently cannot be edited on our self host version running v4.1.0. So, the case is we have a feature with a JSON value, it has different values depending on the environment, normally what we would do is edit the value that the rules returns for each environment, but since the last couple of weeks, on this particular feature, the edit option simply does not appear. Has anyone faced a similar issue or could maybe guide me through it? Thanks
f
is that a JSON rule with a lot of text by chance?
we fixed an issue with the edit menu rending off the page
you can upgrade to latest to fix it
or here's a bit of JS you can run in console to fix it temporarily
Copy code
document
  .querySelectorAll(".rt-Flex.rt-r-ai-center.rt-r-jc-space-between.rt-r-fg-1.rt-r-mb-3")
  .forEach(el => {
    el.style.width = "600px";
  });
b
That’s exactly it Graham, thanks a lot