Bump version

This commit is contained in:
Gregory Schier
2024-06-11 08:35:29 -07:00
parent 43ca9a9390
commit ec0a84d588
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
"productName": "yaak", "productName": "yaak",
"version": "2024.6.0-beta.1", "version": "2024.6.0",
"identifier": "app.yaak.desktop", "identifier": "app.yaak.desktop",
"build": { "build": {
"beforeBuildCommand": "npm run build", "beforeBuildCommand": "npm run build",

View File

@@ -68,7 +68,7 @@ export const RecentResponsesDropdown = function ResponsePane({
label: ( label: (
<HStack space={2}> <HStack space={2}>
<StatusTag className="text-sm" response={r} /> <StatusTag className="text-sm" response={r} />
<span>&rarr;</span>{' '} <span className="text-fg-subtle">&rarr;</span>{' '}
<span className="font-mono text-sm">{r.elapsed >= 0 ? `${r.elapsed}ms` : 'n/a'}</span> <span className="font-mono text-sm">{r.elapsed >= 0 ? `${r.elapsed}ms` : 'n/a'}</span>
</HStack> </HStack>
), ),