mirror of
https://github.com/Sevichecc/raycast-akkoma-extension.git
synced 2025-04-30 14:49:29 +08:00
style: change the name of params
This commit is contained in:
parent
8ddb374a26
commit
16450b1e46
1 changed files with 5 additions and 5 deletions
|
@ -34,14 +34,14 @@ export default function ViewStatusCommand() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<List isShowingDetail isLoading={isLoading} searchBarPlaceholder="Search your status">
|
<List isShowingDetail isLoading={isLoading} searchBarPlaceholder="Search your status">
|
||||||
{status?.map((statu) => (
|
{status?.map((status) => (
|
||||||
<List.Item
|
<List.Item
|
||||||
title={statu.akkoma.source.content}
|
title={status.akkoma.source.content}
|
||||||
key={statu.id}
|
key={status.id}
|
||||||
detail={<List.Item.Detail markdown={statusParser(statu, "date")} />}
|
detail={<List.Item.Detail markdown={statusParser(status, "date")} />}
|
||||||
actions={
|
actions={
|
||||||
<ActionPanel>
|
<ActionPanel>
|
||||||
<Action.OpenInBrowser title="Open Original Status" url={statu.url} />
|
<Action.OpenInBrowser title="Open Original Status" url={status.url} />
|
||||||
</ActionPanel>
|
</ActionPanel>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue