Skip to content

Commit b4a01c4

Browse files
authored
Merge pull request #75 from will-moore/ssbd_logo
Rename RIKEN to SSBD with logo
2 parents 11f51ac + fea0016 commit b4a01c4

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed
11.5 KB
Loading

ome2024-ngff-challenge/src/util.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import Papa from "papaparse";
22

33
import idrLogo from "/idr-mark.svg";
44
import nfdi4bioimage from "/nfdi4bioimage.png";
5+
import ssbdLogo from "/ssbd-logo.png";
56

67
export const SAMPLES_HOME =
78
"https://raw.githubusercontent.com/ome/ome2024-ngff-challenge/main/samples/ngff_samples.csv";
@@ -18,13 +19,15 @@ let faviconDomains = {
1819
Göttingen: "https://nfdi4bioimage.de/",
1920
Jülich: "https://nfdi4bioimage.de/",
2021
NFDI4BIOIMAGE: "https://nfdi4bioimage.de/",
21-
RIKEN: "https://www.riken.jp/",
2222
};
2323

2424
export function getSourceIcon(source) {
2525
if (source === "IDR") {
2626
return idrLogo;
2727
}
28+
if (source === "SSBD") {
29+
return ssbdLogo;
30+
}
2831
let domain = faviconDomains[source];
2932
if (!domain) {
3033
return null;

samples/ngff_samples.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ Crick,https://raw.githubusercontent.com/ome/ome2024-ngff-challenge/main/samples/
1212

1313
NFDI4BIOIMAGE,https://raw.githubusercontent.com/ome/ome2024-ngff-challenge/main/samples/n4bi.csv
1414

15-
RIKEN, https://raw.githubusercontent.com/ome/ome2024-ngff-challenge/main/samples/riken_samples.csv
15+
SSBD,https://raw.githubusercontent.com/ome/ome2024-ngff-challenge/main/samples/ssbd_samples.csv
File renamed without changes.

0 commit comments

Comments
 (0)