Skip to content

Commit

Permalink
Remove const
Browse files Browse the repository at this point in the history
Signed-off-by: Jimmy Tanagra <[email protected]>
  • Loading branch information
jimtng committed Mar 2, 2024
1 parent 9ae82a5 commit 3f9bd76
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ expr.addUnaryOp('@@', (itemName) => {
})
expr.addUnaryOp('#', (itemName) => {
if (itemName === undefined) return undefined
const item = store.getters.trackedItems[itemName]
return item.numericState
return store.getters.trackedItems[itemName].numericState
})

dayjs.extend(relativeTime)
Expand Down

0 comments on commit 3f9bd76

Please sign in to comment.