From 35a97c19e07d1a202701604b60c1018f08dabd31 Mon Sep 17 00:00:00 2001 From: Patrick O'Leary Date: Fri, 1 May 2026 08:41:44 -0500 Subject: [PATCH] fix: allow pasting file paths in file loading dialog --- src/e3sm_quickview/components/file_browser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/e3sm_quickview/components/file_browser.py b/src/e3sm_quickview/components/file_browser.py index a80772e..c8bd6ed 100644 --- a/src/e3sm_quickview/components/file_browser.py +++ b/src/e3sm_quickview/components/file_browser.py @@ -375,7 +375,7 @@ def ui(self): v_model=(self.name("data_simulation"), ""), density="compact", variant="outlined", - disabled=True, + placeholder="Paste or browse for simulation file path", messages="EAM's history output on the physics grids (pg2 grids) written by EAMv2, v3, and an intermediate version towards v4 (EAMxx).", ) html.Label( @@ -386,7 +386,7 @@ def ui(self): v_model=(self.name("data_connectivity"), ""), density="compact", variant="outlined", - disabled=True, + placeholder="Paste or browse for connectivity file path", messages="The horizontal grids used by EAM are cubed spheres. Since these are unstructed grids, QuickView needs to know how to map data to the globe. Therefore, for each simulation data file, a 'connectivity file' needs to be provided.", )