diff --git a/src/pages/stamps/PostageStamp.tsx b/src/pages/stamps/PostageStamp.tsx
index 880e6af..4b2a36a 100644
--- a/src/pages/stamps/PostageStamp.tsx
+++ b/src/pages/stamps/PostageStamp.tsx
@@ -9,10 +9,13 @@ interface Props {
}
export function PostageStamp({ stamp, shorten }: Props): ReactElement {
+ const batchId = shorten ? stamp.batchID.slice(0, 8) : stamp.batchID
+ const label = `${batchId}${stamp.label ? ` - ${stamp.label}` : ''}`
+
return (
- {shorten ? stamp.batchID.slice(0, 8) : stamp.batchID}
+ {label}
diff --git a/src/pages/stamps/StampsTable.tsx b/src/pages/stamps/StampsTable.tsx
index d3bfade..8df6e38 100644
--- a/src/pages/stamps/StampsTable.tsx
+++ b/src/pages/stamps/StampsTable.tsx
@@ -4,6 +4,7 @@ import ExpandableList from '../../components/ExpandableList'
import ExpandableListItem from '../../components/ExpandableListItem'
import ExpandableListItemKey from '../../components/ExpandableListItemKey'
import { EnrichedPostageBatch } from '../../providers/Stamps'
+import { secondsToTimeString } from '../../utils'
import { getHumanReadableFileSize } from '../../utils/file'
import { PostageStamp } from './PostageStamp'
@@ -30,6 +31,14 @@ function StampsTable({ postageStamps }: Props): ReactElement | null {
)}`}
/>
+
+
+
+
+
>
}
>