Skip to content

Commit

Permalink
My Patterns: Use the correct status for declined patterns.
Browse files Browse the repository at this point in the history
Fixes #384
  • Loading branch information
ryelle committed Dec 1, 2021
1 parent 95d569d commit b839326
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -66,7 +66,7 @@
color: $color-black;
}

&.is-declined {
&.is-unlisted {
background: color(red-50);
}
}
Expand Down
Expand Up @@ -20,7 +20,7 @@ function getStatusLabel( pattern ) {
return __( 'Pending', 'wporg-patterns' );
case 'draft':
return __( 'Draft', 'wporg-patterns' );
case 'declined':
case 'unlisted':
return __( 'Declined', 'wporg-patterns' );
}
return '';
Expand Down

0 comments on commit b839326

Please sign in to comment.