Skip to content

Commit

Permalink
Fixing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jespino committed Jan 10, 2025
1 parent bd8c6b8 commit 3ef6e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/components/modals/update_run_status_modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ const AiModalContainer = styled.div`
const LastChangeSince = styled.div<{disabled: boolean}>`
display: flex;
justify-content: space-between;
pointer-events: ${props => props.disabled ? 'none' : 'auto'};
pointer-events: ${(props) => (props.disabled ? 'none' : 'auto')};
>div {
margin: 24px 0 8px 0;
Expand Down

0 comments on commit 3ef6e53

Please sign in to comment.