Skip to content

Commit

Permalink
Merge branch 'vaash/2771' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
VarunVAshrit committed Jan 29, 2025
2 parents dbffcb4 + 95b27c6 commit ab51ecc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/a11y.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
NEXT_PUBLIC_ARCHIVE_CONTENT_LINK: ${{ vars.ARCHIVE_CONTENT_LINK }}
NEXT_PUBLIC_ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }}
NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY: ${{ secrets.ALGOLIA_SEARCH_API_KEY }}
steps:
- name: BrowserStack Env Setup 🌎 # Invokes the setup-env action
id: setup-browserstack-environment
Expand Down
1 change: 1 addition & 0 deletions web/core/Accordion/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export const Header = forwardRef<HTMLButtonElement, AccordionHeaderProps>(functi
dark:focus-visible:envis-outline-invert
flex
justify-start
text-left
${variantClassName[variant]}
`,
className,
Expand Down
2 changes: 2 additions & 0 deletions web/core/Link/ResourceLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { ArrowRight } from '../../icons'
import envisTwMerge from '../../twMerge'
import { TransformableIcon } from '../../icons/TransformableIcon'
import { add, calendar } from '@equinor/eds-icons'
import { PiFilePdfThin } from 'react-icons/pi'

export type Variants = 'default' | 'fit'

Expand Down Expand Up @@ -126,6 +127,7 @@ export const ResourceLink = forwardRef<HTMLAnchorElement, ResourceLinkProps>(fun
case 'downloadableFile':
return extension && extension.toUpperCase() === 'PDF' && showExtensionIcon ? (
<>
<PiFilePdfThin size={24} className="mr-2" />
<div
className={textClassNames}
{...(ariaHideText && {
Expand Down

0 comments on commit ab51ecc

Please sign in to comment.