Skip to content

Commit 7ef0100

Browse files
Merge pull request #213 from zenml-io/QA-Fixes
Qa fixes
2 parents 1a0a66b + c15683d commit 7ef0100

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/ui/layouts/common/SidePopup/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const SidePopup: React.FC<{
4444
title="ZenML - Organization Embed"
4545
style={{ border: '0px', height: '100vh', width: '100%' }}
4646
// src="https://zenml.hellonext.co/embed/home?no_header=true"
47-
src={flavor.docsUrl}
47+
src={flavor?.sdkDocsUrl}
4848
></iframe>
4949
</Box>
5050

src/ui/layouts/stackComponents/BasePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export const BasePage: React.FC<{
106106
);
107107
}}
108108
>
109-
Register Component
109+
Register New Component
110110
</PrimaryButton>
111111
</Box>
112112
</FlexBox>

src/ui/layouts/stackComponents/ConfigureComponent/CreateComponent/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ export const CreateComponent: React.FC<{ flavor: any }> = ({ flavor }) => {
430430
type: toasterTypes.success,
431431
}),
432432
);
433-
dispatchStackComponentsData(1, 10);
433+
dispatchStackComponentsData(1, 1);
434434

435435
history.push(
436436
routePaths.stackComponents.configuration(

src/ui/layouts/stackComponents/ConfigureComponent/SidePopup/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const SidePopup: React.FC<{
2222
title="ZenML - Organization Embed"
2323
style={{ border: '0px', height: '100vh', width: '100%' }}
2424
// src="https://zenml.hellonext.co/embed/home?no_header=true"
25-
src={flavor.docsUrl}
25+
src={flavor.sdkDocsUrl}
2626
></iframe>
2727
</Box>
2828

src/ui/layouts/stackComponents/StackDetail/Configuration/useService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const useService = ({ stackId }: { stackId: TId }): ServiceInterface => {
3838
}),
3939
);
4040
// eslint-disable-next-line react-hooks/exhaustive-deps
41-
}, [locationPath, stackComponent]);
41+
}, [locationPath]);
4242

4343
const setFetching = (fetching: boolean) => {
4444
dispatch(flavorPagesActions.setFetching({ fetching }));

src/ui/layouts/stacks/BasePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export const BasePage: React.FC<{
9191
history.push(routePaths.stacks.createStack(selectedWorkspace))
9292
}
9393
>
94-
Register Stack
94+
Register New Stack
9595
</PrimaryButton>
9696
</Box>
9797
</FlexBox>

0 commit comments

Comments
 (0)