Read Issue Settings not work (properties.onJiraIssue.get)

Hi, I try to read an issue property in forge. I can set the value with:

properties.onJiraIssue('AS-1234').set('my-key', '123');

But when I try to read it, I don’t got any value:

const value = await properties.onJiraIssue('AS-1234').get('my-key');
console.log(value);

Other console output are working.

Has anybody an idea what I do wrong?
Thanks!

Hi @s.stamprath, it’s hard to say what may be wrong from this example. If you call set and get one by one, you should use await in await properties.onJiraIssue('AS-1234').set('my-key', '123');