change history to clean
This commit is contained in:
25
src/App.vue
25
src/App.vue
@@ -16,13 +16,17 @@ const {
|
||||
configsLoading,
|
||||
createConfigForm,
|
||||
createCustomBrowserConfig,
|
||||
cleanupHistoryError,
|
||||
cleanupHistoryForProfile,
|
||||
cleanupHistoryResults,
|
||||
cleanupHistorySelectedProfiles,
|
||||
cleanupSelectedHistoryProfiles,
|
||||
currentBrowser,
|
||||
deleteCustomBrowserConfig,
|
||||
domainFromUrl,
|
||||
error,
|
||||
extensionMonogram,
|
||||
extensionSortKey,
|
||||
historyDomainSortKey,
|
||||
historyCleanupBusy,
|
||||
isDeletingConfig,
|
||||
isOpeningProfile,
|
||||
loading,
|
||||
@@ -39,13 +43,13 @@ const {
|
||||
selectedBrowserId,
|
||||
showBookmarkProfilesModal,
|
||||
showExtensionProfilesModal,
|
||||
showHistoryDomainProfilesModal,
|
||||
showPasswordSiteProfilesModal,
|
||||
sortedBookmarks,
|
||||
sortedExtensions,
|
||||
sortedHistoryDomains,
|
||||
sortedPasswordSites,
|
||||
sortedProfiles,
|
||||
toggleAllHistoryProfiles,
|
||||
toggleHistoryProfile,
|
||||
closeAssociatedProfilesModal,
|
||||
} = useBrowserManager();
|
||||
</script>
|
||||
@@ -109,29 +113,32 @@ const {
|
||||
:extension-sort-key="extensionSortKey"
|
||||
:bookmark-sort-key="bookmarkSortKey"
|
||||
:password-site-sort-key="passwordSiteSortKey"
|
||||
:history-domain-sort-key="historyDomainSortKey"
|
||||
:sorted-profiles="sortedProfiles"
|
||||
:sorted-extensions="sortedExtensions"
|
||||
:sorted-bookmarks="sortedBookmarks"
|
||||
:sorted-password-sites="sortedPasswordSites"
|
||||
:sorted-history-domains="sortedHistoryDomains"
|
||||
:history-selected-profile-ids="cleanupHistorySelectedProfiles"
|
||||
:cleanup-history-busy="historyCleanupBusy"
|
||||
:cleanup-history-error="cleanupHistoryError"
|
||||
:cleanup-history-results="cleanupHistoryResults"
|
||||
:open-profile-error="openProfileError"
|
||||
:section-count="sectionCount"
|
||||
:is-opening-profile="isOpeningProfile"
|
||||
:extension-monogram="extensionMonogram"
|
||||
:domain-from-url="domainFromUrl"
|
||||
:associated-profiles-modal="associatedProfilesModal"
|
||||
@update:active-section="activeSection = $event"
|
||||
@update:profile-sort-key="profileSortKey = $event"
|
||||
@update:extension-sort-key="extensionSortKey = $event"
|
||||
@update:bookmark-sort-key="bookmarkSortKey = $event"
|
||||
@update:password-site-sort-key="passwordSiteSortKey = $event"
|
||||
@update:history-domain-sort-key="historyDomainSortKey = $event"
|
||||
@open-profile="(browserId, profileId) => openBrowserProfile(browserId, profileId)"
|
||||
@show-extension-profiles="showExtensionProfilesModal"
|
||||
@show-bookmark-profiles="showBookmarkProfilesModal"
|
||||
@show-password-site-profiles="showPasswordSiteProfilesModal"
|
||||
@show-history-domain-profiles="showHistoryDomainProfilesModal"
|
||||
@toggle-history-profile="toggleHistoryProfile"
|
||||
@toggle-all-history-profiles="toggleAllHistoryProfiles"
|
||||
@cleanup-selected-history="cleanupSelectedHistoryProfiles"
|
||||
@cleanup-history-for-profile="cleanupHistoryForProfile"
|
||||
@close-associated-profiles="closeAssociatedProfilesModal"
|
||||
/>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user