Skip to content

Commit

Permalink
Default to render cache clear (#5704)
Browse files Browse the repository at this point in the history
  • Loading branch information
weitzman committed Jul 11, 2023
1 parent bb61946 commit 185ebd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/core/CacheCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public function interact($input, $output): void
if (empty($input->getArgument('type'))) {
$types = $this->getTypes($this->bootstrapManager->hasBootstrapped(DrupalBootLevels::FULL));
$choices = array_combine(array_keys($types), array_keys($types));
$type = $this->io()->choice(dt("Choose a cache to clear"), $choices, 'all');
$type = $this->io()->choice(dt("Choose a cache to clear"), $choices, 'render');
$input->setArgument('type', $type);
}

Expand Down

0 comments on commit 185ebd0

Please sign in to comment.