@pega/react-sdk-overrides 0.23.27 → 0.23.28
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.
|
@@ -178,7 +178,7 @@ export default function CaseView(props: PropsWithChildren<CaseViewProps>) {
|
|
|
178
178
|
const actionsAPI = thePConn.getActionsApi();
|
|
179
179
|
const openLocalAction = actionsAPI.openLocalAction.bind(actionsAPI);
|
|
180
180
|
|
|
181
|
-
openLocalAction(editAction.ID, { ...editAction });
|
|
181
|
+
openLocalAction(editAction.ID, { ...editAction, containerName: 'modal', type: 'express' });
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
function getActionButtonsHtml(): any {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropsWithChildren, ReactElement } from 'react';
|
|
2
|
-
import { PConnProps } from '
|
|
2
|
+
import { PConnProps } from '@pega/react-sdk-components/lib/types/PConnProps';
|
|
3
3
|
import './WideNarrow.css';
|
|
4
4
|
|
|
5
5
|
interface WideNarrowProps extends PConnProps {
|
package/package.json
CHANGED