diff --git a/src/styles/theme.scss b/src/styles/theme.scss index 4e292063..a124f5e1 100644 --- a/src/styles/theme.scss +++ b/src/styles/theme.scss @@ -263,6 +263,10 @@ div:has(> a.menu-title) { text-align: left !important; } +.el-input--small .el-input__inner { + --el-input-inner-height: calc(var(--el-input-height, 24px)); +} + html { &::view-transition-old(root), &::view-transition-new(root) { diff --git a/src/views/dashboard/related/async-profiling/components/NewTask.vue b/src/views/dashboard/related/async-profiling/components/NewTask.vue index 7cf86a27..959d6ebf 100644 --- a/src/views/dashboard/related/async-profiling/components/NewTask.vue +++ b/src/views/dashboard/related/async-profiling/components/NewTask.vue @@ -100,7 +100,6 @@ limitations under the License. --> import { useAsyncProfilingStore } from "@/store/modules/async-profiling"; import { useSelectorStore } from "@/store/modules/selectors"; import { ElMessage } from "element-plus"; - import type { Option } from "@/types/app"; import { DurationOptions, ProfilingEvents } from "./data"; /* global defineEmits */