Skip to content

Commit

Permalink
ci: test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav-Eikaas committed Aug 11, 2023
1 parent 68a1df7 commit 4609da8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,3 @@ jobs:
- name: 'deploy'
shell: bash
run: npx turbo run idk --since origin/main -- --token ${{ env.FUSION_TOKEN }}

# # Run the action on the yarn-workspaces example
# - name: Test Action
# id: changedAction
# uses: ./
# with:
# turbo-command: idk --since origin/main -- --token ${{ env.FUSION_TOKEN }}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
getMatStatusColorByStatus,
getMccrStatusColorByStatus,
} from '@cc-components/workordershared';
import { Tabs } from '@equinor/eds-core-react';
import { TabListProps, Tabs } from '@equinor/eds-core-react';
import { tokens } from '@equinor/eds-tokens';
import { createWidget } from '@equinor/workspace-sidesheet';
import { useQuery } from '@tanstack/react-query';
Expand All @@ -28,12 +28,12 @@ import styled from 'styled-components';
import { useMaterial, useMccr } from '../utils-sidesheet';
import { DetailsTab } from './DetailsTab';

export const StyledTabListWrapper = styled.div`
export const StyledTabListWrapper: (props: any) => JSX.Element = styled.div`
overflow: hidden;
width: 100%;
background-color: ${tokens.colors.ui.background__light.hex};
`;
export const StyledTabsList = styled(Tabs.List)`
export const StyledTabsList: (props: TabListProps) => JSX.Element = styled(Tabs.List)`
overflow: auto;
::-webkit-scrollbar {
width: 0;
Expand Down

0 comments on commit 4609da8

Please sign in to comment.