Skip to content

Commit

Permalink
Merge pull request #952 from klonos/patch-1
Browse files Browse the repository at this point in the history
User-friendly names for Dashboard tasks
  • Loading branch information
Schnitzel committed Mar 10, 2019
2 parents dcf9735 + ab45a52 commit 596dcce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions services/ui/src/components/AddTask/logic.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ const withSelectedTask = withState('selectedTask', 'setSelectedTask', null);
const withOptions = withProps(({ pageEnvironment }) => {
let options = [
{
label: 'Drush cache-clear',
label: 'Clear Drupal caches [drush cache-clear]',
value: 'DrushCacheClear'
},
{
label: 'Drush sql-sync',
label: 'Copy database between environments [drush sql-sync]',
value: 'DrushSqlSync'
},
{
label: 'Drush rsync',
label: 'Copy files between environments [drush rsync]',
value: 'DrushRsyncFiles'
},
{
label: 'Drush sql-dump',
label: 'Generate database backup [drush sql-dump]',
value: 'DrushSqlDump'
},
{
label: 'Drush archive-dump (Drush 8 only)',
label: 'Generate database and files backup (Drush 8 only) [drush archive-dump]',
value: 'DrushArchiveDump'
}
];
Expand Down

0 comments on commit 596dcce

Please sign in to comment.