Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions ui/src/views/setting/ConfigurationValue.vue
Original file line numberDiff line numberDiff line change
Expand Up@@ -55,9 +55,9 @@
/>
</a-tooltip>
</span>
<span v-else-if="configrecord.type ==='Range'">
<a-row>
<a-col>
<span v-else-if="configrecord.type ==='Range'" style="width: 75%;">
<a-row type="flex">
<a-col flex="auto">
<a-tooltip :title="editableValue">
<a-slider
style="width: 13vw"
Expand All@@ -73,10 +73,10 @@
/>
</a-tooltip>
</a-col>
<a-col>
<a-col flex="30px">
<a-tooltip :title="editableValue">
<a-input-number
style="width: 5vw; margin-left: 10px; float: right"
style="margin-left: 10px;"
class="config-slider-text"
:defaultValue="configrecord.value * 100"
:min="0"
Expand Down