Skip to content

Commit

Permalink
chore: update console and rust client version (#3639)
Browse files Browse the repository at this point in the history
Signed-off-by: Gaius <gaius.qi@gmail.com>
  • Loading branch information
gaius-qi authored Nov 11, 2024
1 parent b31e5be commit 10062d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manager/console
Submodule console updated 82 files
+3 −0 cypress/e2e/clusters/cluster.cy.ts
+9 −1 cypress/e2e/clusters/clusters.cy.ts
+26 −0 cypress/e2e/clusters/create-cluster.cy.ts
+33 −0 cypress/e2e/clusters/update-cluster.cy.ts
+19 −41 cypress/e2e/job/preheats/preheat.cy.ts
+4 −4 cypress/e2e/job/preheats/preheats.cy.ts
+694 −0 cypress/e2e/job/task/clear.cy.ts
+416 −0 cypress/e2e/job/task/execution.cy.ts
+341 −0 cypress/e2e/job/task/executions.cy.ts
+21 −6 cypress/e2e/menu/menu.cy.ts
+0 −4 cypress/e2e/profile/profile.cy.ts
+2 −1 cypress/fixtures/clusters/cluster/cluster.json
+2 −1 cypress/fixtures/clusters/cluster/delete-cluster.json
+2 −1 cypress/fixtures/clusters/cluster/delete-clusters.json
+2 −1 cypress/fixtures/clusters/cluster/update-cluster.json
+2 −1 cypress/fixtures/clusters/clusters.json
+2 −1 cypress/fixtures/clusters/create-cluster.json
+0 −28 cypress/fixtures/clusters/search-cluster.json
+58 −0 cypress/fixtures/job/task/create-task-job.json
+181 −0 cypress/fixtures/job/task/execution.json
+1,078 −0 cypress/fixtures/job/task/executions.json
+112 −0 cypress/fixtures/job/task/failure-execution.json
+119 −0 cypress/fixtures/job/task/failure-executions.json
+205 −0 cypress/fixtures/job/task/no-task.json
+105 −0 cypress/fixtures/job/task/pagination-executions.json
+117 −0 cypress/fixtures/job/task/pending-execution.json
+119 −0 cypress/fixtures/job/task/pending-executions.json
+93 −0 cypress/fixtures/job/task/pending-task.json
+947 −0 cypress/fixtures/job/task/success-executions.json
+251 −0 cypress/fixtures/job/task/task-id-by-task.json
+308 −0 cypress/fixtures/job/task/task.json
+1 −1 package.json
+5 −0 public/icons/cluster/selected-cluster.svg
+0 −1 public/icons/cluster/user.svg
+12 −0 public/icons/insight/selected-insight.svg
+9 −0 public/icons/job/preheat/selected-job.svg
+1 −0 public/icons/job/task/clear-cache.svg
+1 −0 public/icons/job/task/created.svg
+1 −0 public/icons/job/task/error-log.svg
+6 −0 public/icons/job/task/executions.svg
+1 −0 public/icons/job/task/failure.svg
+1 −0 public/icons/job/task/hostname.svg
+6 −0 public/icons/job/task/ip.svg
+1 −0 public/icons/job/task/no-search.svg
+60 −0 public/icons/job/task/no-task.svg
+3 −0 public/icons/job/task/scheduler-cluster.svg
+9 −0 public/icons/job/task/search.svg
+1 −0 public/icons/job/task/success.svg
+1 −0 public/icons/job/task/task-id.svg
+1 −0 public/icons/job/task/type.svg
+8 −0 public/icons/tokens/selected-developer.svg
+6 −0 public/icons/user/selected-user.svg
+6 −0 public/icons/user/user.svg
+1 −0 src/assets/lotties/search-task-animation.json
+1 −1 src/components/clusters/edit.module.css
+48 −4 src/components/clusters/edit.tsx
+1 −0 src/components/clusters/index.tsx
+1 −1 src/components/clusters/information.module.css
+25 −2 src/components/clusters/information.tsx
+1 −1 src/components/clusters/new.module.css
+36 −0 src/components/clusters/new.tsx
+2 −1 src/components/clusters/show.tsx
+1 −1 src/components/job/preheats/index.tsx
+0 −1 src/components/job/preheats/new.tsx
+22 −3 src/components/job/preheats/show.module.css
+104 −123 src/components/job/preheats/show.tsx
+54 −0 src/components/job/task/clear/index.module.css
+1,091 −0 src/components/job/task/clear/index.tsx
+35 −0 src/components/job/task/executions/index.module.css
+360 −0 src/components/job/task/executions/index.tsx
+72 −0 src/components/job/task/executions/show.module.css
+654 −0 src/components/job/task/executions/show.tsx
+112 −0 src/components/job/task/index.tsx
+1 −0 src/components/loading-button.tsx
+9 −3 src/components/menu/index.module.css
+127 −401 src/components/menu/index.tsx
+1 −1 src/components/schedulers/show.module.css
+1 −1 src/components/schedulers/show.tsx
+13 −0 src/components/search-task-animation.tsx
+3 −0 src/index.css
+9 −0 src/layouts/main.tsx
+167 −7 src/lib/api.ts

0 comments on commit 10062d7

Please sign in to comment.