Skip to content

Commit

Permalink
fixing linter and build error
Browse files Browse the repository at this point in the history
  • Loading branch information
hidetak committed Nov 6, 2023
1 parent 5480ea1 commit 1bffaf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/binding-firestore/src/firestore-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export default class FirestoreServer implements ProtocolServer {
const property = thing.properties[propertyName];
info(`properties topic: ${topic}`);

if (!name) {
if (name == null) {
name = "no_name";
}

Expand Down
2 changes: 1 addition & 1 deletion packages/binding-firestore/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"rootDir": "src",
"resolveJsonModule": true
},
"include": ["src/**/*", "test/**/*"],
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
}

0 comments on commit 1bffaf3

Please sign in to comment.