Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinMcNeil committed Aug 22, 2024
1 parent 6b6a424 commit 69d7ac7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/extension/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ LABEL org.opencontainers.image.title="Labs: AI Tools for Devs" \
com.docker.desktop.extension.api.version="0.3.4" \
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"}]' \
com.docker.desktop.extension.icon="https://raw.githubusercontent.com/docker/labs-ai-tools-for-devs/main/src/extension/docker.svg" \
com.docker.extension.detailed-description="Run AI-powered workflows with Dockerized tools in Docker Desktop." \
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." \
com.docker.extension.publisher-url="https://www.docker.com/" \
com.docker.extension.additional-urls="" \
com.docker.extension.categories="utility-tools" \
Expand Down
4 changes: 2 additions & 2 deletions src/extension/ui/src/components/RunOutput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type RunOutputProps = {
};

const RunOutput: React.FC<RunOutputProps> = ({ runOut, showDebug, setShowDebug }) => (
runOut.length > 0 && (
runOut.length > 0 ? (
<Paper sx={{ p: 1 }}>
<Stack direction='row' spacing={1} alignItems={'center'} justifyContent={'space-between'}>
<Typography variant='h3'>Run output</Typography>
Expand Down Expand Up @@ -41,7 +41,7 @@ const RunOutput: React.FC<RunOutputProps> = ({ runOut, showDebug, setShowDebug }
})}
</div>
</Paper>
)
) : null
);

export default RunOutput;

0 comments on commit 69d7ac7

Please sign in to comment.