File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/Umbraco.Web.UI.Client/src/packages
clipboard/clipboard-entry/detail
core/entity-action/common/delete Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export const manifests: Array<UmbExtensionManifest> = [
26
26
detailRepositoryAlias : UMB_CLIPBOARD_ENTRY_DETAIL_REPOSITORY_ALIAS ,
27
27
confirm : {
28
28
headline : '#clipboard_confirmDeleteHeadline' ,
29
- content : '#clipboard_confirmDeleteDescription' ,
29
+ message : '#clipboard_confirmDeleteDescription' ,
30
30
} ,
31
31
} ,
32
32
} ,
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export class UmbDeleteEntityAction extends UmbEntityActionBase<MetaEntityActionD
26
26
if ( ! item ) throw new Error ( 'Item not found.' ) ;
27
27
28
28
const headline = this . args . meta . confirm ?. headline ?? '#actions_delete' ;
29
- const content = this . args . meta . confirm ?. content ?? '#defaultdialogs_confirmdelete' ;
29
+ const content = this . args . meta . confirm ?. message ?? '#defaultdialogs_confirmdelete' ;
30
30
const keysFromString = this . #localize. getKeysFromString ( content ) ;
31
31
const argsMap : UmbLocalizeStringArgsMap = keysFromString . reduce ( ( acc : UmbLocalizeStringArgsMap , key ) => {
32
32
acc [ key ] = [ item . name ] ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export interface MetaEntityActionDeleteKind extends MetaEntityActionDefaultKind
10
10
itemRepositoryAlias : string ;
11
11
confirm ?: {
12
12
headline ?: string ;
13
- content ?: string ;
13
+ message ?: string ;
14
14
} ;
15
15
}
16
16
You can’t perform that action at this time.
0 commit comments