Skip to content

Commit

Permalink
Update nextdns extension (raycast#14297)
Browse files Browse the repository at this point in the history
- fix
- Initial commit
  • Loading branch information
pernielsentikaer authored Sep 1, 2024
1 parent 790f384 commit ba69251
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions extensions/nextdns/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# NextDNS Changelog

## [Fix] - 2024-09-01

- Fixed a bug in the model name in `Search Logs` that caused a crash

## [Added NextDNS] - 2024-09-01

Initial version code with:

- Allowlist management
- Denylist management
- View logs (Simplified)
2 changes: 1 addition & 1 deletion extensions/nextdns/src/logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function Logs() {
title={log.domain}
icon={getIconById(log.domain)}
accessories={[
{ tag: log.device.name, tooltip: log.device.model },
{ tag: log.device ? log.device.name : "Unknown", tooltip: log.device ? log.device.model : "No model" },
{ date: date, tooltip: date.toLocaleDateString() },
]}
actions={
Expand Down

0 comments on commit ba69251

Please sign in to comment.