♻️ attr

This commit is contained in:
Vanessa 2023-08-02 20:55:25 +08:00
parent 74a6c49f3f
commit 67c0fda4dd
11 changed files with 24 additions and 158 deletions

View file

@ -291,7 +291,7 @@ export const showColMenu = (protyle: IProtyle, blockElement: HTMLElement, cellEl
bind(element) {
element.querySelector("input").addEventListener("keydown", (event: KeyboardEvent) => {
if (event.isComposing) {
return
return;
}
if (event.key === "Enter") {
menu.close();

View file

@ -374,7 +374,7 @@ export const getFiltersHTML = (data: IAVTable) => {
if (index !== filter.value.mSelect.length - 1) {
selectContent += ", ";
}
})
});
if ("Contains" === filter.operator) {
filterValue = `: ${selectContent}`;
} else if (filter.operator === "Does not contains") {