fix: Wrong copy with teams multi-select dropdown (#11075)

This commit is contained in:
Sivin Varghese
2025-03-13 10:34:20 +05:30
committed by GitHub
parent cc4924db55
commit 557df5c5c9
6 changed files with 9 additions and 12 deletions

View File

@@ -82,7 +82,7 @@ input[type='url']:not(.reset-base) {
}
input[type='file'] {
@apply bg-white dark:bg-n-solid-1 leading-[1.15] mb-4;
@apply bg-n-background leading-[1.15] mb-4;
}
// Select

View File

@@ -97,7 +97,7 @@ export default {
}
.step {
@apply bg-slate-75 dark:bg-slate-600 rounded-2xl font-medium w-4 left-4 leading-4 z-[999] absolute text-center text-white dark:text-white text-xxs top-5;
@apply bg-slate-75 dark:bg-slate-600 rounded-2xl font-medium w-4 left-4 leading-4 z-10 absolute text-center text-white dark:text-white text-xxs top-5;
}
}
}

View File

@@ -251,7 +251,7 @@ export default {
$t('AGENT_MGMT.MULTI_SELECTOR.SEARCH.NO_RESULTS.TEAM')
"
:input-placeholder="
$t('AGENT_MGMT.MULTI_SELECTOR.SEARCH.PLACEHOLDER.INPUT')
$t('AGENT_MGMT.MULTI_SELECTOR.SEARCH.PLACEHOLDER.TEAM')
"
@select="onClickAssignTeam"
/>

View File

@@ -22,10 +22,8 @@ const showNewButton = computed(
</script>
<template>
<div
class="flex flex-1 h-full justify-between flex-col m-0 bg-n-background overflow-auto"
>
<div class="max-w-6xl mx-auto w-full h-full">
<div class="flex flex-1 flex-col m-0 bg-n-background overflow-auto">
<div class="max-w-6xl mx-auto w-full flex flex-col flex-1">
<SettingsHeader
button-route="new"
:icon="icon"
@@ -35,9 +33,10 @@ const showNewButton = computed(
:back-url="backUrl"
:show-new-button="showNewButton"
:show-sidemenu-icon="showSidemenuIcon"
class="sticky top-0 z-20"
/>
<router-view v-slot="{ Component }" class="px-5">
<router-view v-slot="{ Component }" class="px-5 flex-1 overflow-hidden">
<component :is="Component" v-if="!keepAlive" :key="$route.fullPath" />
<keep-alive v-else>
<component :is="Component" :key="$route.fullPath" />

View File

@@ -360,7 +360,7 @@ export default {
<template>
<div
class="flex-grow flex-shrink w-full min-w-0 pl-0 pr-0 overflow-auto settings bg-n-solid-1"
class="flex-grow flex-shrink w-full min-w-0 pl-0 pr-0 overflow-auto settings"
>
<SettingIntroBanner
:header-image="inbox.avatarUrl"

View File

@@ -29,9 +29,7 @@ export default {
</script>
<template>
<div
class="p-3 bg-white dark:bg-slate-900 h-[calc(100vh-3.5rem)] flex flex-col border-l border-n-weak"
>
<div class="p-3 bg-n-background h-full flex flex-col">
<div>
<woot-input
:model-value="macroName"