We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 538b465 commit 0e9ae55Copy full SHA for 0e9ae55
src/datalab_app_plugin_insitu/apps/xrd/blocks.py
@@ -96,6 +96,11 @@ def process_and_store_data(self, file_path: str | Path):
96
start_exp = int(self.data.get("start_exp", self.defaults["start_exp"]))
97
exclude_exp = self.data.get("exclude_exp", self.defaults["exclude_exp"])
98
glob_str = self.data.get("glob_str") # Optional: if None, all files are used
99
+
100
+ # Auto-add wildcards if user doesn't include them
101
+ if glob_str and "*" not in glob_str:
102
+ glob_str = f"*{glob_str}*"
103
104
try:
105
data = process_local_xrd_data(
106
file_path=file_path,
0 commit comments