Skip to content

Commit a5b01fc

Browse files
authored
Merge pull request #1391 from nextcloud-libraries/fix/renderInline-context
2 parents 1729c40 + 54c93ce commit a5b01fc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/actions/fileAction.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,12 @@ export interface FileActionData {
102102
/**
103103
* If true, the renderInline function will be called
104104
*/
105-
inline?: (context: ActionContext) => boolean,
105+
inline?: (context: ActionContextSingle) => boolean,
106106
/**
107107
* If defined, the returned html element will be
108108
* appended before the actions menu.
109109
*/
110-
renderInline?: (context: ActionContext) => Promise<HTMLElement | null>,
110+
renderInline?: (context: ActionContextSingle) => Promise<HTMLElement | null>,
111111
}
112112

113113
export class FileAction {

0 commit comments

Comments
 (0)