Skip to content

Commit

Permalink
Merge pull request #75 from will-moore/ssbd_logo
Browse files Browse the repository at this point in the history
Rename RIKEN to SSBD with logo
  • Loading branch information
will-moore authored Oct 28, 2024
2 parents 11f51ac + fea0016 commit b4a01c4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
Binary file added ome2024-ngff-challenge/public/ssbd-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion ome2024-ngff-challenge/src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Papa from "papaparse";

import idrLogo from "/idr-mark.svg";
import nfdi4bioimage from "/nfdi4bioimage.png";
import ssbdLogo from "/ssbd-logo.png";

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

export function getSourceIcon(source) {
if (source === "IDR") {
return idrLogo;
}
if (source === "SSBD") {
return ssbdLogo;
}
let domain = faviconDomains[source];
if (!domain) {
return null;
Expand Down
2 changes: 1 addition & 1 deletion samples/ngff_samples.csv
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ Crick,https://raw.githubusercontent.com/ome/ome2024-ngff-challenge/main/samples/

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

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

0 comments on commit b4a01c4

Please sign in to comment.