From b4d020f708d43403741234d4db9da4f610e28160 Mon Sep 17 00:00:00 2001 From: Jared Scheib Date: Wed, 16 May 2018 13:56:17 -0700 Subject: [PATCH] Type missing renameCellAction payload --- ui/src/dashboards/actions/cellEditorOverlay.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/src/dashboards/actions/cellEditorOverlay.ts b/ui/src/dashboards/actions/cellEditorOverlay.ts index 0c77dfde0..564afa75f 100644 --- a/ui/src/dashboards/actions/cellEditorOverlay.ts +++ b/ui/src/dashboards/actions/cellEditorOverlay.ts @@ -40,7 +40,9 @@ export const changeCellType = (cellType: CellType): ChangeCellTypeAction => ({ interface RenameCellAction { type: 'RENAME_CELL' - payload: {} + payload: { + cellName: string + } } export const renameCell = (cellName: string): RenameCellAction => ({ type: 'RENAME_CELL',