We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b21879e commit d4cae00Copy full SHA for d4cae00
playground/next/index.html
@@ -270,9 +270,9 @@ <h2 class="ui massive header">JSON-LD Playground</h2>
270
</div>
271
272
<!-- errors -->
273
- <div class="ui error message" v-show="parseError">
+ <div class="ui error message" v-show="parseError.message">
274
<div class="header" v-text="parseError.message"></div>
275
- <div class="content" v-if="parseError.details">
+ <div class="content" v-if="parseError && parseError?.details?.event">
276
<pre v-text="JSON.stringify(parseError.details.event, null, 2)"></pre>
277
278
0 commit comments