Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
phortx committed May 2, 2020
1 parent 50d0bb6 commit 5d77cf3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions dist/vuex-orm-graphql.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -7912,8 +7912,7 @@ var Model = /** @class */ (function () {
if (!field)
return false;
var context = Context.getInstance();
return field instanceof context.components.Number ||
field instanceof context.components.Uid;
return field instanceof context.components.Number || field instanceof context.components.Uid;
};
/**
* Tells if a field is a attribute (and thus not a relation)
Expand Down
3 changes: 1 addition & 2 deletions dist/vuex-orm-graphql.esm-bundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -7796,8 +7796,7 @@ class Model {
if (!field)
return false;
const context = Context.getInstance();
return field instanceof context.components.Number ||
field instanceof context.components.Uid;
return field instanceof context.components.Number || field instanceof context.components.Uid;
}
/**
* Tells if a field is a attribute (and thus not a relation)
Expand Down
3 changes: 1 addition & 2 deletions dist/vuex-orm-graphql.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -7796,8 +7796,7 @@ class Model {
if (!field)
return false;
const context = Context.getInstance();
return field instanceof context.components.Number ||
field instanceof context.components.Uid;
return field instanceof context.components.Number || field instanceof context.components.Uid;
}
/**
* Tells if a field is a attribute (and thus not a relation)
Expand Down
3 changes: 1 addition & 2 deletions dist/vuex-orm-graphql.esm.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -7796,8 +7796,7 @@ class Model {
if (!field)
return false;
const context = Context.getInstance();
return field instanceof context.components.Number ||
field instanceof context.components.Uid;
return field instanceof context.components.Number || field instanceof context.components.Uid;
}
/**
* Tells if a field is a attribute (and thus not a relation)
Expand Down
3 changes: 1 addition & 2 deletions dist/vuex-orm-graphql.global.js
Original file line number Diff line number Diff line change
Expand Up @@ -7911,8 +7911,7 @@ var VuexORMGraphQLPlugin = (function (exports) {
if (!field)
return false;
var context = Context.getInstance();
return field instanceof context.components.Number ||
field instanceof context.components.Uid;
return field instanceof context.components.Number || field instanceof context.components.Uid;
};
/**
* Tells if a field is a attribute (and thus not a relation)
Expand Down

0 comments on commit 5d77cf3

Please sign in to comment.