Skip to content

Commit

Permalink
Just call it JSON-LD
Browse files Browse the repository at this point in the history
  • Loading branch information
danburonline committed Dec 11, 2023
1 parent 0cdd584 commit dda212f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shared/components/ResourceEditor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,12 @@ const ResourceEditor: React.FC<ResourceEditorProps> = props => {
<div className="control-panel">
{editable && isEditing && valid && !lintError && (
<div className="feedback _positive">
<CheckCircleOutlined /> Valid structure
<CheckCircleOutlined /> Valid JSON-LD
</div>
)}
{editable && isEditing && !valid && (
<div className="feedback _negative">
<ExclamationCircleOutlined /> Invalid JSON-LD structure
<ExclamationCircleOutlined /> Invalid JSON-LD
</div>
)}
{editable && isEditing && lintError && (
Expand Down

0 comments on commit dda212f

Please sign in to comment.