Skip to content

Commit 2963f47

Browse files
committed
Don't disable Clear all when clearing individual caches
1 parent e5a26e4 commit 2963f47

File tree

1 file changed

+1
-5
lines changed
  • client/dashboard/sites/settings-caching

1 file changed

+1
-5
lines changed

client/dashboard/sites/settings-caching/index.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,11 +202,7 @@ export default function CachingSettings( { siteSlug }: { siteSlug: string } ) {
202202
size="compact"
203203
onClick={ handleClearAllCaches }
204204
isBusy={ isClearingAllCaches }
205-
disabled={
206-
edgeCacheClearMutation.isPending ||
207-
objectCacheClearMutation.isPending ||
208-
isClearingAllCaches
209-
}
205+
disabled={ isClearingAllCaches }
210206
>
211207
{ __( 'Clear all' ) }
212208
</Button>

0 commit comments

Comments
 (0)