File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @platforma-open/milaboratories.mixcr-shm-trees.ui ' : patch
3+ ---
4+
5+ Fix loading/not ready state
Original file line number Diff line number Diff line change @@ -79,9 +79,9 @@ const columnDefs: ColDef<TreeResult>[] = [
7979
8080const isArgsValid = computed (() => model .args .donorColumn !== undefined && model .args .datasetColumns .length > 0 );
8181
82- const notReady = computed (() => ! isArgsValid .value );
82+ const notReady = computed (() => ! isArgsValid .value || ( ! model . outputs . started ) );
8383
84- const loading = computed (() => notReady .value || ( model . outputs . started && result .value === undefined ) );
84+ const loading = computed (() => notReady .value || result .value === undefined );
8585
8686const notReadyText = ` Configure the settings and click 'Run' to see the data ` ;
8787
You can’t perform that action at this time.
0 commit comments