strapi-plugin-react-editorjs icon indicating copy to clipboard operation
strapi-plugin-react-editorjs copied to clipboard

Fix LinkTool to link

Open nhvu1988 opened this issue 2 years ago • 0 comments

Just for consistency on the LinkTool property name compares to other types

before

{
	"id": "V3lqp78HNu",
	"type": "LinkTool",
	"data": ...
},
{
	"id": "hG7KrynPBP",
	"type": "raw",
	"data": ...
},
{
	"id": "WXeqvxSfeh",
	"type": "quote",
	"data": ...
},

after

{
	"id": "V3lqp78HNu",
	"type": "link",
	"data": ...
},
{
	"id": "hG7KrynPBP",
	"type": "raw",
	"data": ...
},
{
	"id": "WXeqvxSfeh",
	"type": "quote",
	"data": ...
},

nhvu1988 avatar May 07 '22 07:05 nhvu1988