From 10845596889a68fed309dc3a083a6a995232495f Mon Sep 17 00:00:00 2001 From: David Rousselie Date: Mon, 5 Feb 2024 14:25:57 +0100 Subject: [PATCH] fix: Add missing action icons --- CHANGELOG.md | 3 +++ package.json | 2 +- src/action/NotificationActions.tsx | 2 +- src/action/NotificationTaskActions.tsx | 4 ++-- src/index.tsx | 4 ++-- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60e952f..fa36495 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,13 @@ ## [Unreleased] +## [0.1.3] - 2024-02-05 + ### Added - Display Linear notification reason - Display Linear project on notification item +- Add missing action icons ## [0.1.2] - 2024-02-01 diff --git a/package.json b/package.json index 581a92e..a91fdd2 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "description": "Manage your notifications in a single Universal Inbox", "icon": "ui-logo-transparent.png", "author": "dax42", - "version": "0.1.1", + "version": "0.1.3", "categories": [ "Productivity" ], diff --git a/src/action/NotificationActions.tsx b/src/action/NotificationActions.tsx index adad4b0..249e35e 100644 --- a/src/action/NotificationActions.tsx +++ b/src/action/NotificationActions.tsx @@ -27,7 +27,7 @@ export function NotificationActions({ notification, detailsTarget, mutate }: Not return ( - + - + completeTask(notification, mutate)} /> diff --git a/src/index.tsx b/src/index.tsx index a87f4e5..e195639 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,5 +1,5 @@ +import { Action, ActionPanel, Detail, Icon, List, getPreferenceValues, openExtensionPreferences } from "@raycast/api"; import { GoogleMailNotificationListItem } from "./integrations/google-mail/listitem/GoogleMailNotificationListItem"; -import { Action, ActionPanel, Detail, List, getPreferenceValues, openExtensionPreferences } from "@raycast/api"; import { TodoistNotificationListItem } from "./integrations/todoist/listitem/TodoistNotificationListItem"; import { GithubNotificationListItem } from "./integrations/github/listitem/GithubNotificationListItem"; import { LinearNotificationListItem } from "./integrations/linear/listitem/LinearNotificationListItem"; @@ -23,7 +23,7 @@ export default function Command() { markdown={"API key incorrect. Please update it in extension preferences and try again."} actions={ - + } />