File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
frontend/src/views/system/embedded Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -313,7 +313,12 @@ defineExpose({
313313 </div >
314314 <div class =" position-set_input" >
315315 <div class =" x" >
316- <el-input-number v-model =" sqlBotForm.x_val" :min =" 0" controls-position =" right" >
316+ <el-input-number
317+ v-model =" sqlBotForm.x_val"
318+ step-strictly
319+ :min =" 0"
320+ controls-position =" right"
321+ >
317322 <template #prefix >
318323 <el-select v-model =" sqlBotForm.x_type" style =" width : 51px " >
319324 <el-option
@@ -327,7 +332,12 @@ defineExpose({
327332 >px
328333 </div >
329334 <div class =" y" >
330- <el-input-number v-model =" sqlBotForm.y_val" :min =" 0" controls-position =" right" >
335+ <el-input-number
336+ v-model =" sqlBotForm.y_val"
337+ step-strictly
338+ :min =" 0"
339+ controls-position =" right"
340+ >
331341 <template #prefix >
332342 <el-select v-model =" sqlBotForm.y_type" style =" width : 51px " >
333343 <el-option
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ const getDsList = (change: boolean = false) => {
132132 dsApi (dsForm .oid ).then ((res : any ) => {
133133 dsListOptions .value = res || []
134134 if (change || ! currentEmbedded .id ) {
135- dsForm .private_list = dsListOptions .value .map ((ele ) => ele .id )
135+ dsForm .private_list = dsListOptions .value .map ((ele : any ) => ele .id )
136136 }
137137 })
138138}
You can’t perform that action at this time.
0 commit comments