This commit is contained in:
Ray Elliott 2022-07-25 18:01:46 +01:00
parent b2f3f66d1c
commit 39d2251c65
1 changed files with 5 additions and 18 deletions

View File

@ -1,19 +1,6 @@
import { useSelect, dispatch } from "@wordpress/data";
import { useState } from "@wordpress/element";
import {
useBlockProps,
InnerBlocks,
InspectorControls,
MediaPlaceholder,
} from "@wordpress/block-editor";
import {
__experimentalNumberControl as NumberControl,
Button,
ToggleControl,
Panel,
PanelBody,
PanelRow,
} from "@wordpress/components";
import { useBlockProps, InnerBlocks } from "@wordpress/block-editor";
import { getSaveElement, createBlock } from "@wordpress/blocks";
import "./editor.scss";
@ -119,12 +106,12 @@ export default function Edit({ attributes, setAttributes, clientId }) {
<div className="inner-content">
<div className="image-hover">
{ attributes.imgUrl !== '' ? (
{attributes.imgUrl !== "" ? (
<img src={attributes.imgUrl} />
) : null }
{ attributes.imgUrlHover !== '' ? (
) : null}
{attributes.imgUrlHover !== "" ? (
<img src={attributes.imgUrlHover} />
) : null }
) : null}
</div>
</div>
</div>