diff --git a/src/store/Accounts.ts b/src/store/Accounts.ts index 57f6a47e..0f801423 100644 --- a/src/store/Accounts.ts +++ b/src/store/Accounts.ts @@ -595,6 +595,13 @@ export class Accounts implements Module { state.commit("loadCodes", entries); state.commit("updateCodes"); + + if ( + state.state.entries.length >= 10 && + !(state.getters.shouldFilter && state.state.filter) + ) { + state.commit("showSearch"); + } state.commit( "updateExport", await EntryStorage.getExport(state.state.entries)