Skip to content

Commit

Permalink
Fix selecting fields in streams (#4123)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljupcovangelski authored Sep 11, 2023
1 parent 06dd402 commit e4baba2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,6 @@ jobs:
echo ${{ secrets.PAT }} | docker login ghcr.io -u airydevci --password-stdin
./scripts/push-images.sh
- name: Install aws cli
uses: chrislennon/action-aws-cli@v1.1
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'

- name: Upload airy binary to S3
if: ${{ github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/release') || github.ref == 'refs/heads/main' }}
run: |
Expand Down
6 changes: 6 additions & 0 deletions frontend/control-center/src/pages/Streams/Creation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none',
}}
/>
</div>
Expand Down Expand Up @@ -232,6 +233,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none',
}}
/>
</div>
Expand Down Expand Up @@ -281,6 +283,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none',
}}
/>
</div>
Expand Down Expand Up @@ -312,6 +315,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none',
}}
/>
</div>
Expand Down Expand Up @@ -394,6 +398,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none',
}}
/>
</div>
Expand Down Expand Up @@ -437,6 +442,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none',
}}
/>
</div>
Expand Down

0 comments on commit e4baba2

Please sign in to comment.