Replies: 1 comment
-
The closest thing to this that you can currently do with the app is to transform your list into a string, store that into a variable and display that variable. Here's roughly how that would work:
const myList = JSON.parse(response.body);
const myListAsString = myList.join('\n');
setVariable('myVariable', myListAsString); Once you're done with all these steps, save your shortcut and try it out. I will keep the idea in my backlog, maybe I can improve some things in the app to make this better supported. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My server wants to return some list data, can it be displayed as a list for easy scrolling。
Beta Was this translation helpful? Give feedback.
All reactions