Skip to content
Snippets Groups Projects
Unverified Commit 24988bba authored by Alexander Polyankin's avatar Alexander Polyankin Committed by GitHub
Browse files

Do not stack up channels when creating a new dashboard subscription (#18054)

parent ba95b270
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,7 @@ class SharingSidebar extends React.Component {
this.props.updateEditingPulse(pulse);
};
addChannel = type => {
setPulseWithChannel = type => {
const { dashboard, pulse, formInput } = this.props;
const channelSpec = formInput.channels[type];
......@@ -157,7 +157,7 @@ class SharingSidebar extends React.Component {
const newPulse = {
...pulse,
channels: pulse.channels.concat(channel),
channels: [channel],
cards: nonTextCardsFromDashboard(dashboard),
};
this.setPulse(newPulse);
......@@ -417,7 +417,7 @@ class SharingSidebar extends React.Component {
returnMode: returnMode.concat([editingMode]),
};
});
this.addChannel("email");
this.setPulseWithChannel("email");
}
}}
onNewSlackPulse={() => {
......@@ -428,7 +428,7 @@ class SharingSidebar extends React.Component {
returnMode: returnMode.concat([editingMode]),
};
});
this.addChannel("slack");
this.setPulseWithChannel("slack");
}
}}
/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment