Skip to content

Commit

Permalink
Merge branch 'fix/many2many-one2many' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Jul 9, 2024
2 parents 4b1bcdd + ac34252 commit aea3424
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 68 deletions.
62 changes: 0 additions & 62 deletions src/Many2many.ts

This file was deleted.

5 changes: 1 addition & 4 deletions src/WidgetFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import HTMLPreview from "./HTMLPreview";
import ProgressBar from "./ProgressBar";
import Date from "./Date";
import DateTime from "./DateTime";
import Many2many from "./Many2many";
import One2many from "./One2many";
import NewLine from "./NewLine";
import Separator from "./Separator";
Expand Down Expand Up @@ -98,12 +97,10 @@ class WidgetFactory {
case "progressbar":
this._widgetClass = ProgressBar;
break;
case "many2many":
this._widgetClass = Many2many;
break;
case "markdown":
this._widgetClass = Markdown;
break;
case "many2many":
case "one2many":
case "one2many_list":
this._widgetClass = One2many;
Expand Down
2 changes: 0 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import FloatTime from "./FloatTime";
import ProgressBar from "./ProgressBar";
import Date from "./Date";
import DateTime from "./DateTime";
import Many2many from "./Many2many";
import Markdown from "./Markdown";
import One2many from "./One2many";
import SearchFilter, { SearchFieldTypes } from "./SearchFilter";
Expand Down Expand Up @@ -85,7 +84,6 @@ export {
HTMLPreview,
Date,
DateTime,
Many2many,
SearchFilter,
Container,
ContainerWidget,
Expand Down

0 comments on commit aea3424

Please sign in to comment.