File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
graylog2-web-interface/src/domainActions/permissions Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,17 +20,17 @@ import notifyingAction from '../notifyingAction';
2020
2121const prepare = notifyingAction ( {
2222 action : EntityShareActions . prepare ,
23- error : ( error , entityName , entityType ) => ( {
23+ error : ( error , entityType , entityName ) => ( {
2424 message : `Preparing shares for ${ entityType } "${ entityName } " failed with status: ${ error } ` ,
2525 } ) ,
2626} ) ;
2727
2828const update = notifyingAction ( {
2929 action : EntityShareActions . update ,
30- error : ( error , entityName , entityType ) => ( {
30+ error : ( error , entityType , entityName ) => ( {
3131 message : `Updating shares for ${ entityType } "${ entityName } " failed with status: ${ error } ` ,
3232 } ) ,
33- success : ( entityName , entityType ) => ( {
33+ success : ( entityType , entityName ) => ( {
3434 message : `Shares for ${ entityType } "${ entityName } " updated successfully` ,
3535 } ) ,
3636} ) ;
You can’t perform that action at this time.
0 commit comments