Skip to content

Commit 847bdd4

Browse files
committed
fix: fix ld typo in credible set confidence tooltip
1 parent 1325e96 commit 847bdd4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

apps/platform/src/pages/CredibleSetPage/ProfileHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ function ProfileHeader() {
139139
loading={loading}
140140
title={
141141
<Tooltip
142-
title="Fine-mapping confidence based on the quality of the linkage-desequilibrium information available and fine-mapping method"
142+
title="Fine-mapping confidence based on the quality of the linkage-disequilibrium information available and fine-mapping method"
143143
showHelpIcon
144144
>
145145
Confidence

packages/sections/src/evidence/GWASCredibleSets/Body.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function getColumns(targetSymbol) {
132132
label: "Fine-mapping confidence",
133133
sortable: true,
134134
tooltip:
135-
"Fine-mapping confidence based on the quality of the linkage-desequilibrium information available and fine-mapping method",
135+
"Fine-mapping confidence based on the quality of the linkage-disequilibrium information available and fine-mapping method",
136136
renderCell: ({ credibleSet }) => {
137137
if (!credibleSet?.confidence) return naLabel;
138138
return (

packages/sections/src/study/GWASCredibleSets/Body.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const columns = [
9898
id: "confidence",
9999
label: "Fine-mapping confidence",
100100
tooltip:
101-
"Fine-mapping confidence based on the quality of the linkage-desequilibrium information available and fine-mapping method",
101+
"Fine-mapping confidence based on the quality of the linkage-disequilibrium information available and fine-mapping method",
102102
sortable: true,
103103
renderCell: ({ confidence }) => {
104104
if (!confidence) return naLabel;

packages/sections/src/variant/GWASCredibleSets/Body.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ function getColumns({ id, referenceAllele, alternateAllele }: getColumnsType) {
190190
id: "confidence",
191191
label: "Fine-mapping confidence",
192192
tooltip:
193-
"Fine-mapping confidence based on the suitability of the linkage-desequilibrium information and fine-mapping method",
193+
"Fine-mapping confidence based on the suitability of the linkage-disequilibrium information and fine-mapping method",
194194
sortable: true,
195195
renderCell: ({ confidence }) => {
196196
if (!confidence) return naLabel;

packages/sections/src/variant/QTLCredibleSets/Body.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ function getColumns({ id, referenceAllele, alternateAllele }: getColumnsType) {
199199
id: "confidence",
200200
label: "Fine-mapping confidence",
201201
tooltip:
202-
"Fine-mapping confidence based on the quality of the linkage-desequilibrium information available and fine-mapping method",
202+
"Fine-mapping confidence based on the quality of the linkage-disequilibrium information available and fine-mapping method",
203203
sortable: true,
204204
renderCell: ({ confidence }) => {
205205
if (!confidence) return naLabel;

0 commit comments

Comments
 (0)