Skip to content

Commit

Permalink
v1.12.9
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarolorentedev committed Aug 2, 2024
1 parent d86bbc8 commit 9eb7a8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "barklarm",
"productName": "barklarm",
"version": "1.12.8",
"version": "1.12.9",
"description": "Build Radiator supporting Github Actions",
"main": ".webpack/main",
"repository": "https://github.com/barklarm/barklarm-app",
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/components/Observers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export const Observers = ({ observables, add, remove, update, save, translate }:
label="Observer Type"
onChange={(event: React.ChangeEvent<HTMLInputElement>) => update('type', index, event.target.value)}
>
{observersList.map(({ value, lable }: any) => (
<MenuItem value={value}>{lable}</MenuItem>
{observersList.map(({ value, label }: any) => (
<MenuItem value={value}>{label}</MenuItem>
))}
</Select>
{getComponent(observable, index, update)}
Expand Down

0 comments on commit 9eb7a8e

Please sign in to comment.