Browse Source

fix(gui-v2): multiselect cell overflow

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/3082/head
mertmit 2 years ago
parent
commit
ab1fcde39a
  1. 6
      packages/nc-gui-v2/components/cell/MultiSelect.vue

6
packages/nc-gui-v2/components/cell/MultiSelect.vue

@ -130,7 +130,7 @@ watch(isOpen, (n, _o) => {
:close-icon="h(MdiCloseCircle, { class: ['ms-close-icon'] })"
@close="onClose"
>
<span class="text-slate-500">{{ val }}</span>
<span class="w-full text-slate-500">{{ val }}</span>
</a-tag>
</template>
</a-select>
@ -169,6 +169,10 @@ watch(isOpen, (n, _o) => {
:deep(.ant-tag-close-icon) {
@apply "text-slate-500";
}
:deep(.ant-select-selection-overflow-item) {
@apply "flex overflow-hidden";
}
</style>
<!--
/**

Loading…
Cancel
Save