Boards Data not loading on Widget Preview

Hello,
I am having an issue where I cannot select any board data to test my monday.com item view app with in the widget preview.
When trying to select an item, I can see the available boards and select one, but then no items are found on the board. When I try to search for an item that I know exists, I get no results found with the option to create a new item, When I try to create a new item, I get infinite loading, not really sure what is wrong here, but was hoping someone could help me out.

Note: I am owner on the boards I attempted this with.

Hello @zeoxo!

This looks quite odd.

Would you be able to send us an email to appsupport@monday.com so we can take a look and maybe do some troubleshooting?

Looking forward to hearing from you :slightly_smiling_face:

Cheers,
Matias

1 Like

Just sent an email! Thanks!

1 Like

I’m seeing this issue as well. Was this resolved somehow?

Hi Lyle,
I was told that my issue was forwarded to monday’s R&D team, still waiting to hear back with a solution from them

Ok. Thanks! I found a way around this by hard coding default table and item ids, but it’s still rather annoying.

monday.listen("context", (res) => {
      const context = res.data

      const queryBoards = `
        query {
          boards(ids: ${context.boardId || '123123123'}) {
            items(ids: ${context.itemId || '123123123'}) {
              name
            }
          }
        }
      `