Skip to content

Commit

Permalink
Always show recording link even if recordings are currently disabled (b…
Browse files Browse the repository at this point in the history
…lakeblackshear#2787)

* Always show recording link even if recordings are currently disabled

* Fix test to consider all cameras to have recording link
  • Loading branch information
NickM-27 authored and blakeblackshear committed Feb 19, 2022
1 parent ebdfbfe commit 5627b66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions web/src/routes/Cameras.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,8 @@ function Camera({ name, conf }) {
const { payload: snapshotValue, send: sendSnapshots } = useSnapshotsState(name);
const href = `/cameras/${name}`;
const buttons = useMemo(() => {
const result = [{ name: 'Events', href: `/events?camera=${name}` }];
if (conf.record.enabled) {
result.push({ name: 'Recordings', href: `/recording/${name}` });
}
return result;
}, [name, conf.record.enabled]);
return [{ name: 'Events', href: `/events?camera=${name}` }, { name: 'Recordings', href: `/recording/${name}` }];
}, [name]);
const icons = useMemo(
() => [
{
Expand Down
2 changes: 1 addition & 1 deletion web/src/routes/__tests__/Cameras.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('Cameras Route', () => {

expect(screen.queryByLabelText('Loading…')).not.toBeInTheDocument();

expect(screen.queryAllByText('Recordings')).toHaveLength(1);
expect(screen.queryAllByText('Recordings')).toHaveLength(2);
});

test('buttons toggle detect, clips, and snapshots', async () => {
Expand Down

0 comments on commit 5627b66

Please sign in to comment.