Skip to content

Commit

Permalink
chore: data driver with empty data type
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximvdw committed Jun 25, 2024
1 parent f3a0070 commit 35f5bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/DataService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export abstract class DataService<I, T> extends Service {
super();
this.driver = dataServiceDriver;

if (this.driver) {
if (this.driver && this.driver.dataType) {
this.uid = this.driver.dataType.name;
}

Expand Down

0 comments on commit 35f5bd1

Please sign in to comment.