0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 20:42:43 +00:00

Update sharePage.jsx

This commit is contained in:
Gazook89
2021-11-22 14:26:32 -06:00
parent be88a0fde8
commit be75019afd

View File

@@ -41,7 +41,7 @@ const SharePage = createClass({
if(!(e.ctrlKey || e.metaKey)) return;
const P_KEY = 80;
if(e.keyCode == P_KEY){
window.open(`/print/${this.props.brew.shareId}?dialog=true`, '_blank').focus();
window.open(`/print/${this.processShareID()}?dialog=true`, '_blank').focus();
e.stopPropagation();
e.preventDefault();
}