Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix(component): fix pattern list search
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexpeschel committed Dec 20, 2017
1 parent ff04ed0 commit 45cc05d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component/container/pattern_list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class PatternListContainer extends React.Component<PatternListContainerPr

folder.getPatterns().forEach((pattern: Pattern) => {
result.push({
value: pattern.getName(),
value: pattern.getId(),
draggable: true,
handleDragStart: (e: React.DragEvent<HTMLElement>) => {
this.handleDragStart(e, pattern);
Expand Down

0 comments on commit 45cc05d

Please sign in to comment.