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 3925b19Copy full SHA for 3925b19
playground/next/index.html
@@ -270,10 +270,10 @@ <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">
276
- <pre v-text="JSON.stringify(parseError.details.event, null, 2)"></pre>
+ <div class="content">
+ <pre v-text="JSON.stringify(parseError?.details?.event, null, 2)"></pre>
277
278
279
<!-- outputs and renderings -->
0 commit comments