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 6a694db commit 2bdd7f5Copy full SHA for 2bdd7f5
app/invocation/invocation_action_card.tsx
@@ -796,7 +796,7 @@ export default class InvocationActionCardComponent extends React.Component<Props
796
...actionResult.outputSymlinks,
797
].map((output) => output.path);
798
const missingOutputs = command.outputPaths.filter((expected) => !actualOutputs.includes(expected));
799
- return missingOutputs.length && renderOutline(renderMissingOutputPaths(missingOutputs));
+ return !!missingOutputs.length && renderOutline(renderMissingOutputPaths(missingOutputs));
800
}
801
802
const actualFiles = [
0 commit comments