Skip to content

Commit e092665

Browse files
authored
[Platform]: fix ld typo in credible set confidence tooltip
[Platform]: fix ld typo in credible set confidence tooltip
2 parents 90a10ef + 847bdd4 commit e092665

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
@@ -135,7 +135,7 @@ function getColumns(targetSymbol, targetId) {
135135
label: "Fine-mapping confidence",
136136
sortable: true,
137137
tooltip:
138-
"Fine-mapping confidence based on the quality of the linkage-desequilibrium information available and fine-mapping method",
138+
"Fine-mapping confidence based on the quality of the linkage-disequilibrium information available and fine-mapping method",
139139
renderCell: ({ credibleSet }) => {
140140
if (!credibleSet?.confidence) return naLabel;
141141
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)