Skip to content

Commit

Permalink
Merge branch 'release/7.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
nsteenbeek committed Mar 9, 2023
2 parents ccbd8e9 + 27d1102 commit 7967d25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hso/d365-cli",
"version": "7.0.2",
"version": "7.0.3",
"author": "HSO Innovation <[email protected]> (https://www.hso.com)",
"description": "Dynamics 365 Command Line Interface for TypeScript projects for Dataverse",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/generators/Entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class Entity {

constructor(bearer: string, entityName: string, entityLogicalName: string, options: EntityOptions) {
this.bearer = bearer;
this.entityName = entityName;
this.entityName = entityName.replaceAll(/\W/g, '');
this.entityLogicalName = entityLogicalName;
this.options = options;
}
Expand Down

0 comments on commit 7967d25

Please sign in to comment.