Skip to content

Commit

Permalink
Merge branch 'upstream-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
KhudaDad414 committed Jul 6, 2023
2 parents f5ef498 + 39d1b2e commit b50bfc5
Show file tree
Hide file tree
Showing 4 changed files with 523 additions and 24,296 deletions.
11 changes: 8 additions & 3 deletions apps/design-system/src/components/OperationIcon.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ import { OperationIcon } from 'ui';

export default {
component: OperationIcon,
parameters: {
backgrounds: {
default: 'dark'
}
}
};

export const WithReplyIcon = () => <OperationIcon operation="reply" className="w-7 h-7" />;
export const ReceiveIcon = () => <OperationIcon operation="receive" className="w-7 h-7" />;
export const SendIcon = () => <OperationIcon operation="send" className="w-7 h-7" />;
export const WithReplyIcon = () => <OperationIcon operation="reply" />;
export const ReceiveIcon = () => <OperationIcon operation="receive" />;
export const SendIcon = () => <OperationIcon operation="send" />;
5 changes: 4 additions & 1 deletion apps/studio/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG BASE_URL_PLACEHOLDER=189b303e-37a0-4f6f-8c0a-50333bc3c36e


FROM node:18-alpine AS base

FROM base AS builder
RUN apk add --no-cache libc6-compat
RUN apk update
Expand All @@ -15,6 +15,9 @@ RUN turbo prune --scope=@asyncapi/studio --docker

# Add lockfile and package.json's of isolated subworkspace
FROM base AS installer

ARG BASE_URL_PLACEHOLDER

RUN apk add --no-cache libc6-compat
RUN apk update
WORKDIR /app
Expand Down
Loading

0 comments on commit b50bfc5

Please sign in to comment.