Skip to content

Commit 47ba6d3

Browse files
fix: style
1 parent 1680c4b commit 47ba6d3

7 files changed

Lines changed: 8 additions & 7 deletions

File tree

ui/src/components/dynamics-form/constructor/items/JsonInputConstructor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</div>
77
</template>
88

9-
<el-row style="width: 100%" :gutter="10">
9+
<el-row class="w-full">
1010
<el-radio-group v-model="formValue.default_value_assignment_method">
1111
<el-radio
1212
:value="item.value"

ui/src/components/dynamics-form/constructor/items/MultiRowConstructor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</div>
77
</template>
88

9-
<el-row style="width: 100%" :gutter="10">
9+
<el-row class="w-full">
1010
<el-radio-group @change="formValue.option_list = []" v-model="formValue.assignment_method">
1111
<el-radio
1212
:value="item.value"

ui/src/components/dynamics-form/constructor/items/MultiSelectConstructor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</div>
77
</template>
88

9-
<el-row style="width: 100%" :gutter="10">
9+
<el-row class="w-full">
1010
<el-radio-group @change="formValue.option_list = []" v-model="formValue.assignment_method">
1111
<el-radio
1212
:value="item.value"

ui/src/components/dynamics-form/constructor/items/RadioCardConstructor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</div>
77
</template>
88

9-
<el-row style="width: 100%" :gutter="10">
9+
<el-row class="w-full">
1010
<el-radio-group @change="formValue.option_list = []" v-model="formValue.assignment_method">
1111
<el-radio
1212
:value="item.value"

ui/src/components/dynamics-form/constructor/items/RadioRowConstructor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</div>
77
</template>
88

9-
<el-row style="width: 100%" :gutter="10">
9+
<el-row class="w-full">
1010
<el-radio-group @change="formValue.option_list = []" v-model="formValue.assignment_method">
1111
<el-radio
1212
:value="item.value"

ui/src/components/dynamics-form/constructor/items/SingleSelectConstructor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</div>
77
</template>
88

9-
<el-row style="width: 100%" :gutter="10">
9+
<el-row class="w-full">
1010
<el-radio-group @change="formValue.option_list = []" v-model="formValue.assignment_method">
1111
<el-radio
1212
:value="item.value"

ui/src/components/dynamics-form/constructor/items/SliderConstructor.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,5 @@ onBeforeMount(() => {
165165
formValue.value.showInput = true
166166
})
167167
</script>
168-
<style lang="scss"></style>
168+
<style lang="scss">
169+
</style>

0 commit comments

Comments
 (0)