Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
Embedded Genesys UI
Commits
dc268d33
Commit
dc268d33
authored
Nov 30, 2020
by
Matija Obreza
Browse files
Accession list: Display accession name in bold
parent
2c549018
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/accession/AccessionListPage.tsx
View file @
dc268d33
...
...
@@ -234,7 +234,7 @@ class AccessionListPage extends React.Component<IAccessionListPageProps & WithTr
)
}
<
td
>
{
a
.
crop
&&
a
.
crop
.
name
||
a
.
cropName
}
</
td
>
<
td
><
Link
to
=
{
`/a/
${
a
.
uuid
}
`
}
>
{
a
.
accessionNumber
}
</
Link
></
td
>
<
td
>
{
a
.
accessionName
}
</
td
>
<
td
>
{
a
.
accessionName
&&
<
b
>
{
a
.
accessionName
}
</
b
>
}
</
td
>
<
td
><
span
dangerouslySetInnerHTML
=
{
{
__html
:
a
.
taxonomy
.
taxonNameHtml
}
}
/></
td
>
<
td
>
{
a
.
countryOfOrigin
&&
(
countryCodes
&&
countryCodes
[
a
.
countryOfOrigin
.
code3
]
||
a
.
countryOfOrigin
.
name
)
}
</
td
>
<
td
>
{
a
.
sampStat
&&
t
(
`accession.sampleStatus.
${
a
.
sampStat
}
`
)
}
</
td
>
...
...
src/request/CartPage.tsx
View file @
dc268d33
...
...
@@ -163,7 +163,7 @@ class CartPage extends React.Component<ICartPageProps, ICartPageState> {
/>
</
td
>
<
td
><
Link
to
=
{
`/a/
${
a
.
uuid
}
`
}
>
{
a
.
accessionNumber
}
</
Link
></
td
>
<
td
>
{
a
.
accessionName
}
</
td
>
<
td
>
{
a
.
accessionName
&&
<
b
>
{
a
.
accessionName
}
</
b
>
}
</
td
>
<
td
><
span
dangerouslySetInnerHTML
=
{
{
__html
:
a
.
taxonomy
.
taxonNameHtml
}
}
/></
td
>
<
td
>
{
a
.
countryOfOrigin
&&
(
countryCodes
&&
countryCodes
[
a
.
countryOfOrigin
.
code3
]
||
a
.
countryOfOrigin
.
name
)
}
</
td
>
<
td
>
{
a
.
sampStat
&&
t
(
`accession.sampleStatus.
${
a
.
sampStat
}
`
)
}
</
td
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment