File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
static/app/views/issueList/pages Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ import {
3131 IconClock ,
3232 IconClose ,
3333 IconCopy ,
34+ IconEllipsis ,
3435 IconFire ,
3536 IconFix ,
3637 IconSeer ,
@@ -520,6 +521,34 @@ function ClusterCard({
520521 { t ( 'View All Issues' ) + ` (${ cluster . group_ids . length } )` }
521522 </ Button >
522523 </ Link >
524+ < DropdownMenu
525+ items = { [
526+ {
527+ key : 'resolve' ,
528+ label : t ( 'Resolve' ) ,
529+ onAction : ( ) => { } ,
530+ } ,
531+ {
532+ key : 'archive' ,
533+ label : t ( 'Archive' ) ,
534+ onAction : ( ) => { } ,
535+ } ,
536+ {
537+ key : 'dismiss' ,
538+ label : t ( 'Dismiss' ) ,
539+ onAction : ( ) => { } ,
540+ } ,
541+ ] }
542+ trigger = { triggerProps => (
543+ < Button
544+ { ...triggerProps }
545+ size = "sm"
546+ icon = { < IconEllipsis size = "sm" /> }
547+ aria-label = { t ( 'More actions' ) }
548+ />
549+ ) }
550+ position = "bottom-end"
551+ />
523552 </ CardFooter >
524553 </ CardContainer >
525554 ) ;
You can’t perform that action at this time.
0 commit comments