We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd2bebb commit c5d9417Copy full SHA for c5d9417
1 file changed
datashuttle/tui/tabs/create_folders.py
@@ -162,10 +162,12 @@ def on_clickable_input_clicked(
162
else:
163
164
async def _on_clickable_input_clicked():
165
+
166
input_box = self.query_one(f"#{input_id}")
167
spinner = CustomSpinner(id="input_suggestion_spinner")
168
input_box.mount(spinner)
169
input_box.disabled = True
170
171
worker = self.fill_input_with_next_sub_or_ses_template(
172
prefix,
173
input_id,
@@ -174,6 +176,7 @@ async def _on_clickable_input_clicked():
174
176
],
175
177
)
178
await worker.wait()
179
180
spinner.remove()
181
input_box.disabled = False
182
0 commit comments