Skip to content

Commit

Permalink
feat(pipeline-builder): User can view staff pick templates on pipelin…
Browse files Browse the repository at this point in the history
…e list page (#561)

Because

- We need template to improve usability

This commit

- User can view staff pick templates on pipeline list page
  • Loading branch information
EiffelFly authored Sep 26, 2023
1 parent 08dd9c7 commit cd35a1c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"@hookform/resolvers": "^3.1.1",
"@instill-ai/design-system": "^0.53.0",
"@instill-ai/design-tokens": "^0.3.2",
"@instill-ai/toolkit": "^0.68.0-rc.76",
"@instill-ai/toolkit": "^0.68.0-rc.91",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-collapsible": "^1.0.2",
"@radix-ui/react-dialog": "^1.0.3",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function MyApp({ Component, pageProps }: AppPropsWithLayout) {
const { dismiss: dismissToast } = useToast();

function isPipelineDetailPage(path: string) {
if (path.split("/")[1] === "pipelines" && path.split("/")[2]) {
if (path.split("/")[2] === "pipelines" && path.split("/")[3]) {
return true;
}
return false;
Expand Down

0 comments on commit cd35a1c

Please sign in to comment.