DaanHoogland commented on a change in pull request #364:
URL: https://github.com/apache/cloudstack-primate/pull/364#discussion_r431611737



##########
File path: src/views/compute/DeployVM.vue
##########
@@ -80,6 +80,25 @@
                         :options="keyboardSelectOptions"
                       ></a-select>
                     </a-form-item>
+                    <a-form-item :label="this.$t('label.vm.boottype')">
+                      <a-select
+                        v-decorator="['boottype']"
+                        @change="fetchBootModes"
+                      >
+                        <a-select-option v-for="bootType in options.bootTypes" 
:key="bootType.id">
+                          {{ bootType.description }}
+                        </a-select-option>
+                      </a-select>
+                    </a-form-item>
+                    <a-form-item :label="this.$t('label.vm.bootmode')">
+                      <a-select
+                        v-decorator="['bootmode']"
+                      >
+                        <a-select-option v-for="bootMode in options.bootModes" 
:key="bootMode.id">
+                          {{ bootMode.description }}
+                        </a-select-option>
+                      </a-select>
+                    </a-form-item>

Review comment:
       @utchoang I think that is an oversight or short cut in the new UI. The 
UI is being phased out and the feature rather new. I think it slipped attention.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to