From 0f41941d87625c41362cfdd6bf25b7e545ade0cd Mon Sep 17 00:00:00 2001 From: "Brian R. Bondy" Date: Mon, 24 Apr 2017 08:48:05 -0400 Subject: [PATCH] Use the correct action name for pinning via drop I think what happened here is that everything was converted but new code was pulled in from a component refactor that moved using the new action name and not updated during a merge conflict. Auditors: @bsclifton Fix #8469 --- app/renderer/components/tabs/pinnedTabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/renderer/components/tabs/pinnedTabs.js b/app/renderer/components/tabs/pinnedTabs.js index eb98a610d57..13a2a0cfd6b 100644 --- a/app/renderer/components/tabs/pinnedTabs.js +++ b/app/renderer/components/tabs/pinnedTabs.js @@ -51,7 +51,7 @@ class PinnedTabs extends ImmutableComponent { const droppedOnFrameProps = windowStore.getFrame(droppedOnTab.props.tab.get('frameKey')) windowActions.moveTab(sourceDragData, droppedOnFrameProps, isLeftSide) if (!sourceDragData.get('pinnedLocation')) { - appActions.setPinned(sourceDragData.get('tabId'), true) + appActions.tabPinned(sourceDragData.get('tabId'), true) } else { appActions.moveSite(siteUtil.getDetailFromFrame(sourceDragData, siteTags.PINNED), siteUtil.getDetailFromFrame(droppedOnFrameProps, siteTags.PINNED),