Skip to content

Commit

Permalink
Merge pull request #855 from sanger/snyk-upgrade-8c57590163fc95c963e9…
Browse files Browse the repository at this point in the history
…4dc610b606fd

[Snyk] Upgrade typescript from 5.4.3 to 5.7.2
  • Loading branch information
sabrine33 authored Dec 19, 2024
2 parents 6941327 + f27231f commit 57a1be1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"react-table": "^7.8.0",
"react-toastify": "^9.0.5",
"tailwindcss": "~3.4.14",
"typescript": "5.4.3",
"typescript": "5.7.2",
"use-immer": "^0.9.0",
"webpack": "5.96.1",
"xlsx": "^0.18.5",
Expand Down
6 changes: 2 additions & 4 deletions src/components/buttons/AddButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ const AddButton = (
return (
<button
{...props}
className={
`p-2 rounded-md hover:bg-gray-100 focus:outline-none focus:bg-gray-100 text-gray-400
hover:text-gray-600 disabled:text-gray-200 ` + props.className ?? ''
}
className={`p-2 rounded-md hover:bg-gray-100 focus:outline-none focus:bg-gray-100 text-gray-400
hover:text-gray-600 disabled:text-gray-200 ${props.className}`}
>
<AddIcon className="inline-block h-5 w-5" />
</button>
Expand Down
2 changes: 1 addition & 1 deletion src/components/icons/FlagIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const FlagIcon: React.FC<FlagIconProps> = (props) => {
height={`${props.height ?? '24px'}`}
viewBox="0 0 20 20"
fill="currentColor"
className={`w-5 h-5 ` + props.className ?? ''}
className={`w-5 h-5 ${props.className}`}
{...props}
>
<path d="M0 0h24v24H0V0z" fill="none" clipRule="evenodd" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/xeniumMetrics/RoiTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const RoiTable = ({ actionColumn, data }: RoiTableProps<any>) => {
);
}
},
actionColumn
actionColumn as Column<RoiTableRow>
]}
data={data}
/>
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -19546,10 +19546,10 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==

typescript@5.4.3:
version "5.4.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.3.tgz#5c6fedd4c87bee01cd7a528a30145521f8e0feff"
integrity sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==
typescript@5.7.2:
version "5.7.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.2.tgz#3169cf8c4c8a828cde53ba9ecb3d2b1d5dd67be6"
integrity sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==

ua-parser-js@^1.0.35:
version "1.0.37"
Expand Down

0 comments on commit 57a1be1

Please sign in to comment.