@incident-io/backstage 0.0.5 → 0.0.7
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/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,6 +53,10 @@ tag:
|
|
|
53
53
|
</Grid>
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
+
If you want to include the list of incidents in places like the page for a
|
|
57
|
+
system, it's worth noting that `overviewContent` isn't reused on every page.
|
|
58
|
+
You may find you need to make more edits to `EntityPage`, based on your setup.
|
|
59
|
+
|
|
56
60
|
## Configure the plugin
|
|
57
61
|
|
|
58
62
|
[api-keys]: https://app.incident.io/settings/api-keys/
|
|
@@ -84,3 +88,8 @@ incident:
|
|
|
84
88
|
system: "<id-of-system-custom-field>"
|
|
85
89
|
domain: "<id-of-domain-custom-field>"
|
|
86
90
|
```
|
|
91
|
+
|
|
92
|
+
If you don't have a custom field set up for one of these entities, then you
|
|
93
|
+
can omit that field completely. If you try and include the `EntityIncidentCard`
|
|
94
|
+
on the page for an entity which doesn't have the configuration, we'll show you
|
|
95
|
+
an error that directs you to update your config.
|