diff --git a/photon-client/src/components/common/cv-range-slider.vue b/photon-client/src/components/common/cv-range-slider.vue index f0f11398f..1d25962a2 100644 --- a/photon-client/src/components/common/cv-range-slider.vue +++ b/photon-client/src/components/common/cv-range-slider.vue @@ -15,6 +15,7 @@ :value="localValue" :max="max" :min="min" + :disabled="disabled" hide-details class="align-center" dark @@ -34,7 +35,7 @@ hide-details single-line type="number" - style="width: 50px" + style="width: 60px" :step="step" @input="handleChange" @focus="prependFocused = true" @@ -53,7 +54,7 @@ hide-details single-line type="number" - style="width: 50px" + style="width: 60px" :step="step" @input="handleChange" @focus="appendFocused = true" @@ -75,7 +76,7 @@ export default { TooltippedLabel, }, // eslint-disable-next-line vue/require-prop-types - props: ["name", "min", "max", "value", "step", "tooltip"], + props: ["name", "min", "max", "value", "step", "tooltip", "disabled"], data() { return { prependFocused: false, diff --git a/photon-client/src/components/pipeline/CameraAndPipelineSelect.vue b/photon-client/src/components/pipeline/CameraAndPipelineSelect.vue index 865cad801..78e5b9553 100644 --- a/photon-client/src/components/pipeline/CameraAndPipelineSelect.vue +++ b/photon-client/src/components/pipeline/CameraAndPipelineSelect.vue @@ -88,7 +88,11 @@ menu - + - + + + + - - - - - Duplicate Pipeline - - - - - - - - - Duplicate - - - Cancel - - - - + - + - Pipeline Name + {{ isPipelineNameEdit ? "Edit Pipeline Name" : "Create Pipeline" }} + @@ -213,161 +202,205 @@ + + + Change Pipeline Type + + Changing the type of this pipeline will erase the current pipeline's settings and replace it with a new {{ ['Reflective', 'Shape'][proposedPipelineType] }} pipeline. You will lose all settings for the pipeline + "{{ ($store.getters.isDriverMode ? ['Driver Mode'] : []).concat($store.getters.pipelineList)[currentPipelineIndex] }}." Are you sure you want to do this? + + + Yes, replace this pipeline + + + No, take me back + + + + +