Fix errors introduced by refactoring of taskSubmitter

I removed some defunct properties - this introduced a couple
of problems, which are resolved by:

* no longer checking for fastAutofocusUri
* removing the unused prop availablePlugins from the calibration modal
This commit is contained in:
Richard Bowman 2024-02-29 22:17:49 +00:00
parent cbd8b090ec
commit fb07343cdd
3 changed files with 2 additions and 9 deletions

View file

@ -160,13 +160,6 @@ export default {
miniStreamDisplay miniStreamDisplay
}, },
props: {
availablePlugins: {
type: Array,
required: true
}
},
data: function() { data: function() {
return { return {
ready: false, ready: false,

View file

@ -132,7 +132,7 @@
</li> </li>
<!--Show autofocus if default plugin is enabled--> <!--Show autofocus if default plugin is enabled-->
<li v-show="fastAutofocusUri || normalAutofocusUri" class="uk-open"> <li class="uk-open">
<a class="uk-accordion-title" href="#">Autofocus</a> <a class="uk-accordion-title" href="#">Autofocus</a>
<div class="uk-accordion-content"> <div class="uk-accordion-content">
<div class="uk-grid-small uk-child-width-expand" uk-grid> <div class="uk-grid-small uk-child-width-expand" uk-grid>

View file

@ -9,7 +9,7 @@
:confirmation-message=" :confirmation-message="
'Start recalibration of the stage to the camera? This may take a while, and the microscope will be locked during this time.' 'Start recalibration of the stage to the camera? This may take a while, and the microscope will be locked during this time.'
" "
thing="camera_stage_mapper" thing="camera_stage_mapping"
action="calibrate_xy" action="calibrate_xy"
:submit-label="'Auto-Calibrate using camera'" :submit-label="'Auto-Calibrate using camera'"
:modal-progress="true" :modal-progress="true"