diff --git a/src/components/Selector.vue b/src/components/Selector.vue index cd99a1b0..0b814075 100644 --- a/src/components/Selector.vue +++ b/src/components/Selector.vue @@ -18,6 +18,8 @@ limitations under the License. --> v-model="selected" :placeholder="placeholder" @change="changeSelected" + filterable + :style="{ borderRadius }" > (props.value); function changeSelected() { @@ -92,4 +95,8 @@ function changeSelected() { width: 30px; } } + +.el-input__inner { + border-radius: unset !important; +} diff --git a/src/router/dashboard.ts b/src/router/dashboard.ts index a98134fa..c1924a21 100644 --- a/src/router/dashboard.ts +++ b/src/router/dashboard.ts @@ -48,7 +48,7 @@ export const routesDashboard: Array = [ }, }, { - path: "/dashboard/edit/:layerId/:entityId/:dashboardId", + path: "/dashboard/edit/:layerId/:entity/:dashboardId", component: () => import("@/views/dashboard/Edit.vue"), name: "Edit", meta: { diff --git a/src/views/dashboard/Edit.vue b/src/views/dashboard/Edit.vue index 40a15f5a..2a18bbe1 100644 --- a/src/views/dashboard/Edit.vue +++ b/src/views/dashboard/Edit.vue @@ -15,7 +15,7 @@ limitations under the License. -->