Skip to content

Commit

Permalink
Correct var name
Browse files Browse the repository at this point in the history
  • Loading branch information
electrikmilk committed Nov 26, 2023
1 parent 421d9eb commit 46a5298
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actions/copy-to-clipboard.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 ShowAlertParameters {
interface CopyToClipboardParameters {
WFInput: string | object
WFLocalOnly: boolean
WFExpirationDate: string | object
Expand All @@ -11,7 +11,7 @@ interface ShowAlertParameters {
export default {
title: "Copy",
icon: "doc_on_doc_fill",
render: (container: HTMLElement, params: ShowAlertParameters) => {
render: (container: HTMLElement, params: CopyToClipboardParameters) => {
container.className += ' sp-blue-action';

const action = renderActionHeader(actions['setclipboard'],
Expand Down

0 comments on commit 46a5298

Please sign in to comment.