Skip to content

Commit

Permalink
opt
Browse files Browse the repository at this point in the history
  • Loading branch information
minooo committed Mar 20, 2018
1 parent 3a059cf commit 2f9d346
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/1-05-HotCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default ({ item, index }) => {
});
return;
}
window.open(item.external_links);
window.open(item.pc_outside_link);
}

return (
Expand Down
2 changes: 1 addition & 1 deletion components/3-00-List.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default ({ item }) => {
return;
}

window.open(item.external_links);
window.open(item.pc_outside_link);
}
return (
<div
Expand Down
2 changes: 1 addition & 1 deletion components/3-41-Rank.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { WrapLink } from "@components";

export default ({ item, index }) => (
<WrapLink href={item.external_links} as="/">
<WrapLink href={item.pc_outside_link} as="/">
{index < 3 ? (
<div className="flex ptb15 plr10 c333 home-loanlist-hover">
<div className="w106 h66">
Expand Down

0 comments on commit 2f9d346

Please sign in to comment.