@pb33f/cowboy-components 0.5.2 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/model-renderer/schema.js +1 -1
- package/dist/components/model-tree/tree.d.ts +2 -0
- package/dist/components/model-tree/tree.js +5 -0
- package/dist/components/paginator/paginator.css.js +1 -1
- package/dist/components/problems-overview/problems-overview.css.js +2 -2
- package/dist/components/the-doctor/the-doctor.css.js +4 -3
- package/dist/components/the-doctor/the-doctor.d.ts +1 -0
- package/dist/components/the-doctor/the-doctor.js +45 -39
- package/dist/cowboy-components.umd.cjs +453 -452
- package/dist/services/model-service.js +1 -1
- package/package.json +1 -1
|
@@ -159,7 +159,7 @@ export class ModelService {
|
|
|
159
159
|
}
|
|
160
160
|
const mockData = await graph.text();
|
|
161
161
|
if (!mockData) {
|
|
162
|
-
reject({ detail: 'unable to fetch model graph' });
|
|
162
|
+
reject({ detail: 'unable to fetch model graph, please re-lint your specification' });
|
|
163
163
|
return;
|
|
164
164
|
}
|
|
165
165
|
resolve(mockData);
|
package/package.json
CHANGED