Skip to content

Commit

Permalink
* kanban: refactor.
Browse files Browse the repository at this point in the history
  • Loading branch information
catouse committed Jul 9, 2024
1 parent 20e58ba commit 5f033b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lib/kanban/src/component/kanban-lane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {Toolbar} from '@zui/toolbar/src/component';

import type {ComponentChild, ComponentChildren, RenderableProps} from 'preact';
import type {ClassNameLike} from '@zui/core';
import type {KanbanColOptions, KanbanColProps, KanbanLaneName, KanbanLaneProps} from '../types';
import type {KanbanColOptions, KanbanColProps, KanbanLaneProps} from '../types';
import {KanbanLaneCol} from './kanban-lane-col';

export class KanbanLane extends HElement<KanbanLaneProps> {
Expand Down Expand Up @@ -47,7 +47,6 @@ export class KanbanLane extends HElement<KanbanLaneProps> {

protected _getChildren(props: RenderableProps<KanbanLaneProps>): ComponentChildren {
const {
name,
title,
titleClass,
actions,
Expand Down
2 changes: 1 addition & 1 deletion lib/kanban/src/component/kanban.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {$, Computed, HElement, createRef, fetchData, isFetchSetting, mergeProps, parseSize, toCssSize, Sticky} from '@zui/core';
import {$, Computed, HElement, createRef, fetchData, isFetchSetting, mergeProps, parseSize, toCssSize} from '@zui/core';
import {Draggable, DraggableOptions} from '@zui/dnd';
import {KanbanHeader} from './kanban-header';
import {KanbanBody} from './kanban-body';
Expand Down

0 comments on commit 5f033b5

Please sign in to comment.