Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions workspaces/splunk/.changeset/forty-ties-fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@backstage-community/plugin-splunk-on-call': patch
---

Replaces global JSX with React.JSX
3 changes: 2 additions & 1 deletion workspaces/splunk/bcp.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"autoVersionBump": true,
"knipReports": false
"knipReports": false,
"listDeprecations": true
}
3 changes: 2 additions & 1 deletion workspaces/splunk/plugins/splunk-on-call/report.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { ConfigApi } from '@backstage/core-plugin-api';
import { DiscoveryApi } from '@backstage/core-plugin-api';
import { Entity } from '@backstage/catalog-model';
import { JSX as JSX_2 } from 'react/jsx-runtime';
import { JSX as JSX_3 } from 'react';
import { RouteRef } from '@backstage/core-plugin-api';

// @public (undocumented)
Expand Down Expand Up @@ -220,7 +221,7 @@ export class SplunkOnCallClient implements SplunkOnCallApi {

// @public (undocumented)
export const SplunkOnCallPage: {
(props: SplunkOnCallPageProps): JSX.Element;
(props: SplunkOnCallPageProps): JSX_3.Element;
defaultProps: {
title: string;
subtitle: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/

import { JSX } from 'react';
import Grid from '@material-ui/core/Grid';
import { makeStyles } from '@material-ui/core/styles';
import { EntitySplunkOnCallCard } from './EntitySplunkOnCallCard';
Expand Down