Skip to content

Commit 53079be

Browse files
authored
Merge pull request #523 from Ravinou/3.1.1
3.1.1
2 parents eed58c1 + 5a96fb8 commit 53079be

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

Containers/RepoManage/RepoManage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ export default function RepoManage(props: RepoManageProps) {
297297
Edit the repository{' '}
298298
<span
299299
style={{
300-
color: 'rgba(99, 115, 129, 0.38)',
300+
color: '#6d4aff',
301301
}}
302302
>
303303
{targetRepo?.repositoryName}
@@ -472,8 +472,8 @@ export default function RepoManage(props: RepoManageProps) {
472472
className='defaultButton'
473473
disabled={!isValid || isSubmitting || isLoading}
474474
>
475-
{props.mode == 'edit' && 'Edit'}
476-
{props.mode == 'add' && 'Add'}
475+
{props.mode == 'edit' && 'Save'}
476+
{props.mode == 'add' && 'Add repository'}
477477
</button>
478478
</form>
479479
{props.mode == 'edit' ? (

helpers/shells/getStorageUsed.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ fi
2929

3030
# Get the size of each repository and format as JSON
3131
cd "${home}"/repos
32-
output=$(du -s -- * 2>/dev/null | awk '{print "{\"size\":" $1 ",\"name\":\"" $2 "\"}"}' | jq -s '.')
32+
output=$(du -s -L -- * 2>/dev/null | awk '{print "{\"size\":" $1 ",\"name\":\"" $2 "\"}"}' | jq -s '.')
3333
if [ -z "$output" ]; then
3434
output="[]"
3535
fi

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "borgwarehouse",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

0 commit comments

Comments
 (0)