@jfvilas/plugin-kwirth-log 0.12.5 → 0.12.6
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 +5 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,9 +41,8 @@ Following table shows version compatibility between this Kwirth Backstage plugin
|
|
|
41
41
|
|
|
42
42
|
| Plugin Kwirth version | Kwirth version |
|
|
43
43
|
|-|-|
|
|
44
|
-
|0.
|
|
45
|
-
|0.
|
|
46
|
-
|0.0.3|0.4.20|
|
|
44
|
+
|0.11.3|0.3.155|
|
|
45
|
+
|0.12.5|0.4.20|
|
|
47
46
|
|
|
48
47
|
|
|
49
48
|
## Installation
|
|
@@ -53,9 +52,9 @@ It's very simple and straightforward, it is in fact very similar to any other fo
|
|
|
53
52
|
|
|
54
53
|
2. Install this Backstage frontend plugin:
|
|
55
54
|
|
|
56
|
-
```
|
|
55
|
+
```sh
|
|
57
56
|
# From your Backstage root directory
|
|
58
|
-
yarn --cwd packages/app add @jfvilas/plugin-kwirth-log @jfvilas/plugin-kwirth-common
|
|
57
|
+
yarn --cwd packages/app add @jfvilas/plugin-kwirth-log @jfvilas/plugin-kwirth-common @jfvilas/kwirth-common
|
|
59
58
|
```
|
|
60
59
|
|
|
61
60
|
3. Make sure the [Kwirth backend plugin](https://www.npmjs.com/package/@jfvilas/plugin-kwirth-backend#configure) is installed and configured.
|
|
@@ -82,7 +81,7 @@ For Kwirth plugin to be usable on the frontend, you must tailor your Entity Page
|
|
|
82
81
|
<EntityLayout>
|
|
83
82
|
{/* other tabs... */}
|
|
84
83
|
<EntityLayout.Route if={isKwirthAvailable} path="/kwirthlog" title="KwirthLog">
|
|
85
|
-
<EntityKwirthLogContent />
|
|
84
|
+
<EntityKwirthLogContent enableRestart={false} />
|
|
86
85
|
</EntityLayout.Route>
|
|
87
86
|
</EntityLayout>
|
|
88
87
|
)
|