Skip to content

Commit 69d7ac7

Browse files
author
colinmcneil
committed
Fix build
1 parent 6b6a424 commit 69d7ac7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/extension/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ LABEL org.opencontainers.image.title="Labs: AI Tools for Devs" \
2929
com.docker.desktop.extension.api.version="0.3.4" \
3030
com.docker.extension.screenshots='[{"alt":"screenshot of the extension UI", "url":"https://raw.githubusercontent.com/docker/labs-ai-tools-for-devs/main/src/extension/Screenshot1.png"}, {"alt":"screenshot of the extension output", "url":"https://raw.githubusercontent.com/docker/labs-ai-tools-for-devs/main/src/extension/Screenshot2.png"}]' \
3131
com.docker.desktop.extension.icon="https://raw.githubusercontent.com/docker/labs-ai-tools-for-devs/main/src/extension/docker.svg" \
32-
com.docker.extension.detailed-description="Run AI-powered workflows with Dockerized tools in Docker Desktop." \
32+
com.docker.extension.detailed-description="Internal tool for research at Docker - available to the public. Run AI-powered workflows with Dockerized tools in Docker Desktop." \
3333
com.docker.extension.publisher-url="https://www.docker.com/" \
3434
com.docker.extension.additional-urls="" \
3535
com.docker.extension.categories="utility-tools" \

src/extension/ui/src/components/RunOutput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ type RunOutputProps = {
1111
};
1212

1313
const RunOutput: React.FC<RunOutputProps> = ({ runOut, showDebug, setShowDebug }) => (
14-
runOut.length > 0 && (
14+
runOut.length > 0 ? (
1515
<Paper sx={{ p: 1 }}>
1616
<Stack direction='row' spacing={1} alignItems={'center'} justifyContent={'space-between'}>
1717
<Typography variant='h3'>Run output</Typography>
@@ -41,7 +41,7 @@ const RunOutput: React.FC<RunOutputProps> = ({ runOut, showDebug, setShowDebug }
4141
})}
4242
</div>
4343
</Paper>
44-
)
44+
) : null
4545
);
4646

4747
export default RunOutput;

0 commit comments

Comments
 (0)