Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions backend/src/baserow/contrib/database/field_rules/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
FieldRulesTypeRegistry,
RowRuleChanges,
)
from baserow.contrib.database.table.cache import clear_generated_model_cache
from baserow.contrib.database.table.models import GeneratedTableModel, Table
from baserow.core.db import specific_iterator

Expand Down Expand Up @@ -132,7 +131,6 @@ def add_state_column(self) -> GeneratedTableModel:
self.table.field_rules_validity_column_added = True
self.table.save(update_fields=["field_rules_validity_column_added"])

clear_generated_model_cache()
model = self._get_model()
return model

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
v-model="searchTerm"
class="workspace-search__input"
:placeholder="$t('workspaceSearch.searchEverything')"
@keydown="handleKeydown"
@keydown.stop="handleKeydown"
@focusin="focusInput = true"
@focusout="focusInput = false"
/>
Expand Down
Loading