mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 18:17:38 +00:00
Fix preview size
This commit is contained in:
parent
303c285bd0
commit
8c24a3d966
1 changed files with 3 additions and 3 deletions
|
|
@ -2,7 +2,7 @@ import React from "react";
|
|||
import { connect } from "react-redux";
|
||||
import { Helmet } from "react-helmet";
|
||||
import * as Selectors from "./redux/selectors";
|
||||
import { SKIN_WIDTH, SKIN_HEIGHT, SKIN_RATIO } from "./constants";
|
||||
import { SCREENSHOT_WIDTH, SCREENSHOT_HEIGHT } from "./constants";
|
||||
|
||||
class Head extends React.Component {
|
||||
render() {
|
||||
|
|
@ -34,12 +34,12 @@ class Head extends React.Component {
|
|||
<meta
|
||||
property="og:image:width"
|
||||
key="og:image:width"
|
||||
content={SKIN_WIDTH}
|
||||
content={SCREENSHOT_WIDTH}
|
||||
/>,
|
||||
<meta
|
||||
property="og:image:height"
|
||||
key="og:image:height"
|
||||
content={SKIN_HEIGHT}
|
||||
content={SCREENSHOT_HEIGHT}
|
||||
/>,
|
||||
<meta
|
||||
property="og:image:alt"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue