Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
🚨 Fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasrohmer committed Jul 7, 2021
1 parent 22646ef commit ca306b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Helpers/Managers/BaseManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ export class BaseManager {

if (
this.instances.length === 1 &&
(this.ctx.params.id || this.method == 'POST')
(this.ctx.params.id || this.method === 'POST')
) {
return this.$toResource(this.instances[0]);
}
Expand Down

0 comments on commit ca306b4

Please sign in to comment.