Skip to content

Commit d0995c7

Browse files
committed
Updated CHANGELOG
1 parent 4bda92d commit d0995c7

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
***
66

7+
## [v0.1.20] - 2025-01-23
8+
9+
New Features
10+
- Backup Storage Location Management: Added functionality to configure and manage backup storage locations.
11+
- Volume Snapshot Location Management: Introduced the ability to configure and manage volume snapshot locations.
12+
- Velero Resource Consultation: Added a feature to consult Velero resources.
13+
14+
Improvements
15+
- Enhanced UI usability
16+
717
## [v0.1.19] - 2025-01-11
818

919
- Improved code maintainability

src/components/Velero/Repo/Details.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Box , Card , Group , ScrollArea , Text} from '@mantine/core';
1+
import { Box, Card, Group, ScrollArea, Text } from '@mantine/core';
22

33
export function Details({ data }: any) {
44
return (
@@ -21,7 +21,7 @@ export function Details({ data }: any) {
2121
<Text fw={600}>{data?.payload?.spec.resticIdentifier}</Text>
2222
</Group>
2323
<Group mt={10}>
24-
<Text w={170}>Backup Storage Location:</Text>
24+
<Text w={170}>Storage Location:</Text>
2525
<Text fw={600}>{data?.payload?.spec.backupStorageLocation}</Text>
2626
</Group>
2727
<Group mt={10}>

0 commit comments

Comments
 (0)