Skip to content

Commit

Permalink
Fix bug 53339: open banner link in new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
vafomin committed Nov 1, 2021
1 parent cf3c74c commit fb75330
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/asc-web-components/campaigns-banner/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Text from "../text";
import Loaders from "@appserver/common/components/Loaders";

const onButtonClick = (url) => {
window.location = url;
window.open(url, "_blank");
};

const CampaignsBanner = (props) => {
Expand Down

0 comments on commit fb75330

Please sign in to comment.