Skip to content

Commit

Permalink
Correct action params name
Browse files Browse the repository at this point in the history
  • Loading branch information
electrikmilk committed Jun 4, 2024
1 parent 3431442 commit b29e2be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actions/get-file-from-folder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {renderActionHeader, renderParameters} from "~/render";
import {actions, actionText} from "~/actions";
import {renderValue} from "~/value";

interface GetIPAddress {
interface GetFileFromFolderParams {
WFGetFilePath: string | object
WFFile: string | object
WFGetFolderContents: boolean
Expand All @@ -13,7 +13,7 @@ interface GetIPAddress {
export default {
title: "Get file from",
icon: 'folder_fill',
render: (container: HTMLElement, params: GetIPAddress) => {
render: (container: HTMLElement, params: GetFileFromFolderParams) => {
container.className += ' sp-blue-action';

const action = renderActionHeader(actions['documentpicker.open'],
Expand Down

0 comments on commit b29e2be

Please sign in to comment.