From 15fe6e658c5bff0dcd784f229e412d3f48fecc44 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 --- js/components/pinnedTabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/components/pinnedTabs.js b/js/components/pinnedTabs.js index b20a0a35ff5..6e3e4634b79 100644 --- a/js/components/pinnedTabs.js +++ b/js/components/pinnedTabs.js @@ -41,7 +41,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),