-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Fix style confusion #2697
fix: Fix style confusion #2697
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,13 +9,21 @@ | |
:close-on-click-modal="false" | ||
:close-on-press-escape="false" | ||
> | ||
<el-form label-position="top" ref="paramFormRef" :model="form" | ||
require-asterisk-position="right"> | ||
<el-form | ||
label-position="top" | ||
ref="paramFormRef" | ||
:model="form" | ||
require-asterisk-position="right" | ||
> | ||
<el-form-item label="MCP" prop="mcp_enable"> | ||
<el-switch v-model="form.mcp_enable" /> | ||
</el-form-item> | ||
<el-form-item v-if="form.mcp_enable" label="MCP Server Config" prop="mcp_servers" | ||
:rules="[{ required: true, message: $t('common.required') }]"> | ||
<el-form-item | ||
v-if="form.mcp_enable" | ||
label="MCP Server Config" | ||
prop="mcp_servers" | ||
:rules="[{ required: true, message: $t('common.required') }]" | ||
> | ||
<el-input | ||
v-model="form.mcp_servers" | ||
:rows="6" | ||
|
@@ -49,7 +57,6 @@ const mcpServerJson = `{ | |
} | ||
}` | ||
|
||
|
||
const form = ref<any>({ | ||
mcp_servers: '', | ||
mcp_enable: false | ||
|
@@ -82,26 +89,4 @@ const submit = () => { | |
|
||
defineExpose({ open }) | ||
</script> | ||
<style lang="scss" scoped> | ||
.param-dialog { | ||
padding: 8px 8px 24px 8px; | ||
|
||
.el-dialog__header { | ||
padding: 16px 16px 0 16px; | ||
} | ||
|
||
.el-dialog__body { | ||
padding: 0 !important; | ||
} | ||
|
||
.dialog-max-height { | ||
height: 560px; | ||
} | ||
|
||
.custom-slider { | ||
.el-input-number.is-without-controls .el-input__wrapper { | ||
padding: 0 !important; | ||
} | ||
} | ||
} | ||
</style> | ||
<style lang="scss" scoped></style> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There appear to be several issues and improvements that can be made to the provided code: Issues and Improvements
Optimization Suggestions
By addressing these points, the code becomes more readable and maintainable while ensuring proper behavior and compatibility across different environments. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The provided code looks mostly correct, but there are some minor areas for improvement:
Remove Unused CSS Classes:
The
dialog-max-height
class is not used anywhere in the component, so you can remove it.Simplify SCSS Styles:
Some styles like
.el-input-number.is-without-controls .el-input__wrapper { padding: 0 !important; }
could be simplified to a base style that applies when specific classes are present.Here's the updated code with these improvements:
Key Changes:
dialog-max-height
class..el-input-number.is-without-controls el-input__wrapper
styling by removingpadding-left
, which was redundant given the current padding on both sides (var(--el-padding-base)
).These changes make the code cleaner and more efficient while preserving its functionality.