From 21b0b9efd42e264b8329c0bcf356747b657113fa Mon Sep 17 00:00:00 2001 From: Lazaro Alonso Date: Fri, 19 Jun 2026 23:15:33 +0200 Subject: [PATCH 1/4] new zarr links --- .../ui/MainPanel/DatasetCollection.ts | 84 +++++++++++++++++-- 1 file changed, 75 insertions(+), 9 deletions(-) diff --git a/src/components/ui/MainPanel/DatasetCollection.ts b/src/components/ui/MainPanel/DatasetCollection.ts index fb17ba2d..9bad6dc0 100644 --- a/src/components/ui/MainPanel/DatasetCollection.ts +++ b/src/components/ui/MainPanel/DatasetCollection.ts @@ -1,26 +1,92 @@ -export const ZARR_STORES = { - ESDC: 'https://s3.bgc-jena.mpg.de:9000/esdl-esdc-v3.0.2/esdc-16d-2.5deg-46x72x1440-3.0.2.zarr', - SEASFIRE: 'https://s3.bgc-jena.mpg.de:9000/misc/seasfire_rechunked.zarr', - PRECIPITATION: 'https://storage.googleapis.com/cmip6/CMIP6/HighResMIP/EC-Earth-Consortium/EC-Earth3P-HR/highresSST-present/r1i1p1f1/Amon/pr/gr/v20170811/', -}; - export const DATASETS_COLLECTION = [ { key: 'seasfire', label: 'SeasFire Cube', subtitle: 'A Global Dataset for Seasonal Fire Modeling in the Earth System', - store: ZARR_STORES.SEASFIRE, + store: 'https://s3.bgc-jena.mpg.de:9000/misc/seasfire_rechunked.zarr', }, { key: 'ESDC', label: 'ESDC', subtitle: 'Earth System Data Cube v3.0.2', - store: ZARR_STORES.ESDC, + store: 'https://s3.bgc-jena.mpg.de:9000/esdl-esdc-v3.0.2/esdc-16d-2.5deg-46x72x1440-3.0.2.zarr', }, { key: 'precipitation', label: 'Precipitation (EC-Earth3P-HR)', subtitle: 'Precipitation data from EC-Earth3P-HR highresSST-present', - store: ZARR_STORES.PRECIPITATION, + store: 'https://storage.googleapis.com/cmip6/CMIP6/HighResMIP/EC-Earth-Consortium/EC-Earth3P-HR/highresSST-present/r1i1p1f1/Amon/pr/gr/v20170811/', + }, + { + key: 'arco-ocean', + label: 'ARCO-OCEAN', + subtitle: 'Global Ocean Reanalysis Daily', + store: 'https://ogs-arco-ocean.s3.eu-south-1.amazonaws.com/dataset/tres=1d/res=0p25/levels=10/', + }, + { + key: 'cmip6-mpi-esm1-2-hr-tas', + label: 'CMIP6 MPI-ESM1-2-HR', + subtitle: 'Historical Near-Surface Air Temperature', + store: 'https://storage.googleapis.com/cmip6/CMIP6/CMIP/MPI-M/MPI-ESM1-2-HR/historical/r1i1p1f1/Amon/tas/gn/v20190710/', + }, + { + key: 'cmip6-pmip-ipsl-cm6a-lr-tas', + label: 'CMIP6 PMIP IPSL-CM6A-LR', + subtitle: 'Mid-Holocene Near-Surface Air Temperature', + store: 'https://storage.googleapis.com/cmip6/CMIP6/PMIP/IPSL/IPSL-CM6A-LR/midHolocene/r1i1p1f3/Amon/tas/gr/v20180926/', + }, + { + key: 'cmip6-hadgem3-gc31-hm-tas', + label: 'CMIP6 HighResMIP HadGEM3-GC31-HM', + subtitle: 'Near-Surface Air Temperature', + store: 'https://storage.googleapis.com/cmip6/CMIP6/HighResMIP/MOHC/HadGEM3-GC31-HM/highresSST-present/r1i1p1f1/Amon/tas/gn/v20170831/', + }, + { + key: 'indian-ocean-chl', + label: 'Indian Ocean Physical and Biological Variables', + subtitle: '', + store: 'https://storage.googleapis.com/nmfs_odp_nwfsc/CB/mind_the_chl_gap/IO.zarr', + }, + { + key: 'nasa-mur-sst', + label: 'NASA MUR Sea Surface Temperature', + subtitle: 'Multi-scale Ultra-high Resolution SST', + store: 'https://mur-sst.s3.us-west-2.amazonaws.com/zarr-v1/', + }, + { + key: 'cmip6-gfdl-esm4-tos', + label: 'CMIP6 NOAA GFDL-ESM4', + subtitle: 'Historical Sea Surface Temperature', + store: 'https://storage.googleapis.com/cmip6/CMIP6/CMIP/NOAA-GFDL/GFDL-ESM4/historical/r2i1p1f1/Omon/tos/gn/v20180701/', + }, + { + key: 'cmip6-awi-cm-1-1-mr-tos', + label: 'CMIP6 AWI-CM-1-1-MR', + subtitle: 'Historical Daily Sea Surface Temperature', + store: 'https://cmip6-pds.s3.amazonaws.com/CMIP6/CMIP/AWI/AWI-CM-1-1-MR/historical/r1i1p1f1/Oday/tos/gn/v20181218/', + }, + { + key: 'carbonplan-antarctic-era5', + label: 'CarbonPlan Antarctic ERA5 Reanalysis', + subtitle: '', + store: 'https://carbonplan-share.s3.us-west-2.amazonaws.com/zarr-layer-examples/antarctic_era5.zarr', + }, + { + key: 'silam-dust', + label: 'SILAM Global Dust Model Forecasts', + subtitle: 'Dust', + store: 'https://data.source.coop/bkr/silam-dust/silam_global_dust_v3.zarr', + }, + { + key: 'silam-dust-v2', + label: 'SILAM Global Dust Model Forecasts (v2)', + subtitle: 'Dust', + store: 'https://data.source.coop/bkr/silam-dust/data.zarr', + }, + { + key: 'gefs-35day-direct', + label: 'NOAA GEFS 35-day Ensemble Forecast', + subtitle: '', + store: 'https://data.dynamical.org/noaa/gefs/forecast-35-day/latest.zarr', }, ]; \ No newline at end of file From d5927e190cf7b1466f2500c2f3f1b003643a38fe Mon Sep 17 00:00:00 2001 From: Lazaro Alonso Date: Sat, 20 Jun 2026 00:57:22 +0200 Subject: [PATCH 2/4] catalogs --- .../ui/MainPanel/CuratedDatasets.tsx | 4 +- .../ui/MainPanel/IcechunkCatalog.ts | 128 ++++++++++++++++++ .../{DatasetCollection.ts => ZarrCatalog.ts} | 2 +- 3 files changed, 131 insertions(+), 3 deletions(-) create mode 100644 src/components/ui/MainPanel/IcechunkCatalog.ts rename src/components/ui/MainPanel/{DatasetCollection.ts => ZarrCatalog.ts} (98%) diff --git a/src/components/ui/MainPanel/CuratedDatasets.tsx b/src/components/ui/MainPanel/CuratedDatasets.tsx index 3db1c35f..36b6278f 100644 --- a/src/components/ui/MainPanel/CuratedDatasets.tsx +++ b/src/components/ui/MainPanel/CuratedDatasets.tsx @@ -1,7 +1,7 @@ "use client"; import React, { useState } from 'react'; -import { DATASETS_COLLECTION } from './DatasetCollection'; +import { ZARR_CATALOG } from './ZarrCatalog'; import { Command, CommandEmpty, @@ -30,7 +30,7 @@ const CuratedDatasets = ({ const [search, setSearch] = useState(''); const [showAll, setShowAll] = useState(false); - const filtered = DATASETS_COLLECTION.filter(ds => + const filtered = ZARR_CATALOG.filter(ds => ds.label.toLowerCase().includes(search.toLowerCase()) || ds.subtitle.toLowerCase().includes(search.toLowerCase()) ); diff --git a/src/components/ui/MainPanel/IcechunkCatalog.ts b/src/components/ui/MainPanel/IcechunkCatalog.ts new file mode 100644 index 00000000..fe2d6913 --- /dev/null +++ b/src/components/ui/MainPanel/IcechunkCatalog.ts @@ -0,0 +1,128 @@ +export const DATASETS_COLLECTION_ICECHUNK = [ + { + key: 'chirps-daily', + label: 'CHIRPS Daily Precipitation', + subtitle: '', + store: 'https://data.source.coop/e4drr-project/observations/chirps_daily_icechunk', + }, + { + key: 'earthmover-era5-surface', + label: 'Earthmover ERA5 Surface Reanalysis', + subtitle: 'Multi-Variable', + store: 'https://earthmover-icechunk-era5.s3.us-east-1.amazonaws.com/era5_surface_aws', + }, + { + key: 'noaa-gfs-forecast', + label: 'NOAA GFS', + subtitle: 'Global Weather Forecast', + store: 'https://dynamical-noaa-gfs.s3.us-west-2.amazonaws.com/noaa-gfs-forecast/v0.2.7.icechunk/', + }, + { + key: 'dwd-icon-eu-forecast', + label: 'DWD ICON-EU', + subtitle: 'Numerical Weather Forecast', + store: 'https://dynamical-dwd-icon-eu.s3.us-west-2.amazonaws.com/dwd-icon-eu-forecast-5-day/v0.2.0.icechunk/', + }, + { + key: 'ecmwf-aifs-single-forecast', + label: 'ECMWF AIFS Single Forecast', + subtitle: 'Artificial Intelligence Forecasting System', + store: 'https://dynamical-ecmwf-aifs-single.s3.us-west-2.amazonaws.com/ecmwf-aifs-single-forecast/v0.1.0.icechunk/', + }, + { + key: 'metoffice-global-wave', + label: 'UK Met Office Global Wave Forecast', + subtitle: '', + store: 'https://data.source.coop/bkr/metoffice/metoffice_global_wave.icechunk', + }, + { + key: 'metoffice-global-deterministic-6h', + label: 'UK Met Office Global Deterministic Atmosphere Forecast', + subtitle: '6-hourly 24hr', + store: 'https://data.source.coop/bkr/metoffice/metoffice_global_deterministic_10km_6hourly_24hr.icechunk', + }, + { + key: 'nasa-geos-15min', + label: 'NASA GEOS Atmospheric Reanalysis', + subtitle: '15-minute', + store: 'https://data.source.coop/bkr/geos/geos_15min.icechunk', + }, + { + key: 'metoffice-global-deterministic-11h', + label: 'UK Met Office Global Deterministic Atmosphere Forecast', + subtitle: '11-hour', + store: 'https://data.source.coop/bkr/metoffice/metoffice_global_deterministic_10km_11hour.icechunk', + }, + { + key: 'metoffice-global-deterministic', + label: 'UK Met Office Global Deterministic Atmosphere Forecast', + subtitle: '', + store: 'https://data.source.coop/bkr/metoffice/metoffice_global_deterministic_10km.icechunk', + }, + { + key: 'noaa-hrrr-analysis', + label: 'NOAA HRRR', + subtitle: 'High-Resolution Rapid Refresh Analysis', + store: 'https://dynamical-noaa-hrrr.s3.us-west-2.amazonaws.com/noaa-hrrr-analysis/v0.2.0.icechunk/', + }, + { + key: 'noaa-mrms-conus-hourly', + label: 'NOAA MRMS CONUS', + subtitle: 'Hourly Radar-Based Precipitation Analysis', + store: 'https://dynamical-noaa-mrms.s3.amazonaws.com/noaa-mrms-conus-analysis-hourly/v0.3.0.icechunk/', + }, + { + key: 'ecmwf-aifs-ens-forecast', + label: 'ECMWF AIFS Ensemble Forecast', + subtitle: '', + store: 'https://dynamical-ecmwf-aifs-ens.s3.us-west-2.amazonaws.com/ecmwf-aifs-ens-forecast/v0.1.0.icechunk/', + }, + { + key: 'ecmwf-ifs-ens-15day', + label: 'ECMWF IFS Ensemble 15-day Weather Forecast', + subtitle: '0.25°', + store: 'https://dynamical-ecmwf-ifs-ens.s3.us-west-2.amazonaws.com/ecmwf-ifs-ens-forecast-15-day-0-25-degree/v0.1.0.icechunk/', + }, + { + key: 'noaa-gefs-35day-forecast', + label: 'NOAA GEFS 35-day Ensemble Forecast', + subtitle: '', + store: 'https://dynamical-noaa-gefs.s3.us-west-2.amazonaws.com/noaa-gefs-forecast-35-day/v0.2.0.icechunk/', + }, + { + key: 'silam-aerosol', + label: 'SILAM Global Dust Model Forecasts', + subtitle: 'Aerosol', + store: 'https://data.source.coop/bkr/silam-dust/silam_aerosol.icechunk', + }, + { + key: 'cams-aerosol-analysis', + label: 'CAMS Aerosol Analysis', + subtitle: 'Copernicus CAMS Operational Archive', + store: 'https://data.source.coop/bkr/cams/cams.icechunk', + }, + { + key: 'cams-aerosol-forecast', + label: 'CAMS Aerosol Forecast', + subtitle: 'Copernicus CAMS Operational Archive', + store: 'https://data.source.coop/bkr/cams/cams_analysis_and_forecast.icechunk', + }, + { + key: 'nasa-rasi', + label: 'NASA RASI', + subtitle: 'Risk Analysis and Solutions Innovators', + store: 'https://nasa-waterinsight.s3.us-west-2.amazonaws.com/virtual-zarr-store/icechunk/RASI/HISTORICAL/', + }, + { + key: 'alaska-hrrr', + label: 'Alaska HRRR', + subtitle: '', + store: 'https://data.source.coop/bkr/dmi/alaska_hrrr.icechunk', + }, + { + key: 'ndvi-test', + label: 'NDVI', + subtitle: 'Normalized Difference Vegetation Index', + store: 'https://data.source.coop/eeholmes/chlaz/icechunk', + }, +]; \ No newline at end of file diff --git a/src/components/ui/MainPanel/DatasetCollection.ts b/src/components/ui/MainPanel/ZarrCatalog.ts similarity index 98% rename from src/components/ui/MainPanel/DatasetCollection.ts rename to src/components/ui/MainPanel/ZarrCatalog.ts index 9bad6dc0..350d82d7 100644 --- a/src/components/ui/MainPanel/DatasetCollection.ts +++ b/src/components/ui/MainPanel/ZarrCatalog.ts @@ -1,4 +1,4 @@ -export const DATASETS_COLLECTION = [ +export const ZARR_CATALOG = [ { key: 'seasfire', label: 'SeasFire Cube', From b381ec4e8d1d55e38a3e779853b3cdcda16468ee Mon Sep 17 00:00:00 2001 From: Lazaro Alonso Date: Sat, 20 Jun 2026 13:47:37 +0200 Subject: [PATCH 3/4] mv assets --- .../catalogs}/IcechunkCatalog.ts | 2 +- .../catalogs}/ZarrCatalog.ts | 0 src/assets/{ => imgs}/SeasFire-logo.png | Bin src/assets/{ => imgs}/line-graph.svg | 0 src/assets/{ => imgs}/logo.png | Bin src/assets/{ => imgs}/logoS.png | Bin src/assets/{ => imgs}/logo_bgc.png | Bin src/assets/{ => imgs}/logo_bgc_mpi.png | Bin src/assets/{ => imgs}/logo_mpi.png | Bin src/assets/{ => imgs}/logocut.png | Bin src/assets/{ => imgs}/seasfire_logo.png | Bin src/assets/{ => imgs}/settings.svg | 0 src/assets/index.ts | 18 +++++--- .../ui/MainPanel/CuratedDatasets.tsx | 3 +- src/components/ui/MainPanel/Dataset.tsx | 41 +++++++++++++----- src/components/ui/Widgets/Switcher.tsx | 4 +- 16 files changed, 46 insertions(+), 22 deletions(-) rename src/{components/ui/MainPanel => assets/catalogs}/IcechunkCatalog.ts (98%) rename src/{components/ui/MainPanel => assets/catalogs}/ZarrCatalog.ts (100%) rename src/assets/{ => imgs}/SeasFire-logo.png (100%) rename src/assets/{ => imgs}/line-graph.svg (100%) rename src/assets/{ => imgs}/logo.png (100%) rename src/assets/{ => imgs}/logoS.png (100%) rename src/assets/{ => imgs}/logo_bgc.png (100%) rename src/assets/{ => imgs}/logo_bgc_mpi.png (100%) rename src/assets/{ => imgs}/logo_mpi.png (100%) rename src/assets/{ => imgs}/logocut.png (100%) rename src/assets/{ => imgs}/seasfire_logo.png (100%) rename src/assets/{ => imgs}/settings.svg (100%) diff --git a/src/components/ui/MainPanel/IcechunkCatalog.ts b/src/assets/catalogs/IcechunkCatalog.ts similarity index 98% rename from src/components/ui/MainPanel/IcechunkCatalog.ts rename to src/assets/catalogs/IcechunkCatalog.ts index fe2d6913..5ba38e62 100644 --- a/src/components/ui/MainPanel/IcechunkCatalog.ts +++ b/src/assets/catalogs/IcechunkCatalog.ts @@ -1,4 +1,4 @@ -export const DATASETS_COLLECTION_ICECHUNK = [ +export const ICECHUNK_CATALOG = [ { key: 'chirps-daily', label: 'CHIRPS Daily Precipitation', diff --git a/src/components/ui/MainPanel/ZarrCatalog.ts b/src/assets/catalogs/ZarrCatalog.ts similarity index 100% rename from src/components/ui/MainPanel/ZarrCatalog.ts rename to src/assets/catalogs/ZarrCatalog.ts diff --git a/src/assets/SeasFire-logo.png b/src/assets/imgs/SeasFire-logo.png similarity index 100% rename from src/assets/SeasFire-logo.png rename to src/assets/imgs/SeasFire-logo.png diff --git a/src/assets/line-graph.svg b/src/assets/imgs/line-graph.svg similarity index 100% rename from src/assets/line-graph.svg rename to src/assets/imgs/line-graph.svg diff --git a/src/assets/logo.png b/src/assets/imgs/logo.png similarity index 100% rename from src/assets/logo.png rename to src/assets/imgs/logo.png diff --git a/src/assets/logoS.png b/src/assets/imgs/logoS.png similarity index 100% rename from src/assets/logoS.png rename to src/assets/imgs/logoS.png diff --git a/src/assets/logo_bgc.png b/src/assets/imgs/logo_bgc.png similarity index 100% rename from src/assets/logo_bgc.png rename to src/assets/imgs/logo_bgc.png diff --git a/src/assets/logo_bgc_mpi.png b/src/assets/imgs/logo_bgc_mpi.png similarity index 100% rename from src/assets/logo_bgc_mpi.png rename to src/assets/imgs/logo_bgc_mpi.png diff --git a/src/assets/logo_mpi.png b/src/assets/imgs/logo_mpi.png similarity index 100% rename from src/assets/logo_mpi.png rename to src/assets/imgs/logo_mpi.png diff --git a/src/assets/logocut.png b/src/assets/imgs/logocut.png similarity index 100% rename from src/assets/logocut.png rename to src/assets/imgs/logocut.png diff --git a/src/assets/seasfire_logo.png b/src/assets/imgs/seasfire_logo.png similarity index 100% rename from src/assets/seasfire_logo.png rename to src/assets/imgs/seasfire_logo.png diff --git a/src/assets/settings.svg b/src/assets/imgs/settings.svg similarity index 100% rename from src/assets/settings.svg rename to src/assets/imgs/settings.svg diff --git a/src/assets/index.ts b/src/assets/index.ts index fb9ba350..4c1130b4 100644 --- a/src/assets/index.ts +++ b/src/assets/index.ts @@ -1,9 +1,11 @@ -import logoSeasFire from "./logoS.png"; -import logoSF from "./SeasFire-logo.png"; -import logo from "./logo.png"; -import logoBGC_MPI from "./logo_bgc_mpi.png" -import logoBGC from "./logo_bgc.png" -import logoMPI from "./logo_mpi.png" +import logoSeasFire from "./imgs/logoS.png"; +import logoSF from "./imgs/SeasFire-logo.png"; +import logo from "./imgs/logo.png"; +import logoBGC_MPI from "./imgs/logo_bgc_mpi.png" +import logoBGC from "./imgs/logo_bgc.png" +import logoMPI from "./imgs/logo_mpi.png" +import { ZARR_CATALOG } from "./catalogs/ZarrCatalog" +import { ICECHUNK_CATALOG } from "./catalogs/IcechunkCatalog" export { logoSeasFire, @@ -11,5 +13,7 @@ export { logoSF, logoBGC_MPI, logoBGC, - logoMPI + logoMPI, + ZARR_CATALOG, + ICECHUNK_CATALOG, }; \ No newline at end of file diff --git a/src/components/ui/MainPanel/CuratedDatasets.tsx b/src/components/ui/MainPanel/CuratedDatasets.tsx index 36b6278f..689ced2d 100644 --- a/src/components/ui/MainPanel/CuratedDatasets.tsx +++ b/src/components/ui/MainPanel/CuratedDatasets.tsx @@ -1,7 +1,8 @@ "use client"; import React, { useState } from 'react'; -import { ZARR_CATALOG } from './ZarrCatalog'; +import { ZARR_CATALOG } from "@/assets/index"; + import { Command, CommandEmpty, diff --git a/src/components/ui/MainPanel/Dataset.tsx b/src/components/ui/MainPanel/Dataset.tsx index 0390599e..b9d7dcf7 100644 --- a/src/components/ui/MainPanel/Dataset.tsx +++ b/src/components/ui/MainPanel/Dataset.tsx @@ -12,10 +12,13 @@ import { TooltipContent, TooltipTrigger, } from "@/components/ui/tooltip"; +import { Separator } from '@/components/ui/separator'; import { DatasetOption, DescriptionContent } from './DescriptionContent'; import RemoteZarr from './RemoteZarr'; +import RemoteIcechunk from './RemoteIcechunk'; import LocalContent from './LocalContent'; import DatasetsModal from './DataSetsModal'; +import { Switcher } from '../Widgets/Switcher'; const Dataset = () => { const [showStoreInput, setShowStoreInput] = useState(false); @@ -26,6 +29,7 @@ const Dataset = () => { const [popoverOpen, setPopoverOpen] = useState(false); const [isSafari, setIsSafari] = useState(false); const [openDatasetsModal, setOpenDatasetsModal] = useState(false); + const [useIcechunk, setUseIcechunk] = useState(false); const { initStore, setInitStore, setOpenVariables } = useGlobalStore( useShallow(state => ({ @@ -102,36 +106,51 @@ const Dataset = () => { className="cursor-pointer w-full justify-between gap-2 mb-1" onClick={() => setOpenDatasetsModal(true)} > - {popoverSide !== 'top' && } + {popoverSide !== 'top' && } Explore Datasets - {popoverSide === 'top' && } + {popoverSide === 'top' && } -
-
{ - setShowStoreInput(prev => !prev); + const opening = !showStoreInput || activeOption !== 'remote'; + setShowStoreInput(opening); setShowLocalInput(false); setActiveOption('remote'); setShowDescription(false); + if (opening) setUseIcechunk(false); }} > - Remote Zarr + Remote {showStoreInput && (
- setShowDescription(true)} + setUseIcechunk(prev => !prev)} /> + {useIcechunk ? ( + setShowDescription(true)} + /> + ) : ( + setShowDescription(true)} + /> + )}
)}
+ +
{ setShowStoreInput(false); setActiveOption('local'); setShowDescription(false); + setUseIcechunk(false); }} > Local @@ -166,7 +186,6 @@ const Dataset = () => { />
)} -
diff --git a/src/components/ui/Widgets/Switcher.tsx b/src/components/ui/Widgets/Switcher.tsx index e5c1caee..b066e0ab 100644 --- a/src/components/ui/Widgets/Switcher.tsx +++ b/src/components/ui/Widgets/Switcher.tsx @@ -4,7 +4,7 @@ export const Switcher = ({leftText, rightText, state, onClick, className} : {lef return (
@@ -14,7 +14,7 @@ export const Switcher = ({leftText, rightText, state, onClick, className} : {lef {rightText}
From 82d909722baf56a071ae0458e12249aaf0729ed8 Mon Sep 17 00:00:00 2001 From: Lazaro Alonso Date: Sat, 20 Jun 2026 13:55:23 +0200 Subject: [PATCH 4/4] wrap --- src/components/ui/MainPanel/RemoteIcechunk.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/MainPanel/RemoteIcechunk.tsx b/src/components/ui/MainPanel/RemoteIcechunk.tsx index 0497f112..f96be577 100644 --- a/src/components/ui/MainPanel/RemoteIcechunk.tsx +++ b/src/components/ui/MainPanel/RemoteIcechunk.tsx @@ -283,7 +283,7 @@ const RemoteIcechunk = ({ setInitStore, onOpenDescription }: Props) => { Advanced {showAdvanced && ( -
+