Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
robot9706 committed Nov 28, 2024
1 parent a6fe6d5 commit f5967de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions web/crux-ui/src/pages/[teamSlug]/deployments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import useCopyDeploymentState from '@app/components/deployments/use-copy-deploym
import { Layout } from '@app/components/layout'
import SelectNodeChips from '@app/components/nodes/select-node-chips'
import { BreadcrumbLink } from '@app/components/shared/breadcrumb'
import Filters from '@app/components/shared/filters'
import PageHeading from '@app/components/shared/page-heading'
import { PaginationSettings } from '@app/components/shared/paginator'
import DyoButton from '@app/elements/dyo-button'
Expand Down Expand Up @@ -81,7 +80,7 @@ const DeploymentsPage = () => {
take: pagination.pageSize,
filter: !filter.filter || filter.filter.trim() === '' ? null : filter.filter,
nodeId: filterNode?.id ?? null,
status: status,
status,
}

const res = await fetch(routes.deployment.api.list(query))
Expand Down
2 changes: 1 addition & 1 deletion web/crux/src/app/deploy/deploy.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ export default class DeployService {
}

if (query.filter) {
const filter = query.filter
const { filter } = query
where = {
...where,
OR: [
Expand Down

0 comments on commit f5967de

Please sign in to comment.