We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9f6717 commit a0810f6Copy full SHA for a0810f6
src/resolvers/jobs.ts
@@ -60,7 +60,7 @@ export function getResolver(storyIds, stories, cache: Cache): any {
60
for (const id of ids) {
61
const storyItem = await cache.get(`${kind}story:${id}`);
62
63
- if (!storyItem.text || !skipText) {
+ if (!skipText || typeof storyItem['text'] === 'undefined' || storyItem['text'] === null) {
64
stories.push(storyItem);
65
}
66
0 commit comments