Skip to content

Commit

Permalink
fix: add missing region input on the backups storage config page
Browse files Browse the repository at this point in the history
Fixes: #98

Signed-off-by: Artem Chernyshev <[email protected]>
  • Loading branch information
Unix4ever committed Apr 9, 2024
1 parent f70239c commit 1b64824
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions frontend/src/views/omni/Settings/BackupStorage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ included in the LICENSE file.
<template v-if="s3Spec">
<t-input title="Endpoint" :model-value="s3Spec.endpoint || ''" @update:model-value="value => s3Spec.endpoint = value"/>
<t-input title="Bucket" :model-value="s3Spec.bucket || ''" @update:model-value="value => s3Spec.bucket = value"/>
<t-input title="Region" :model-value="s3Spec.region || ''" @update:model-value="value => s3Spec.region = value"/>
<div class="flex gap-5">
<t-input title="Access Key ID" type="password" class="flex-1 flex-shrinl" :model-value="s3Spec.access_key_id || ''" @update:model-value="value => s3Spec.access_key_id = value"/>
<t-input title="Secret Access Key" type="password" class="flex-1" :model-value="s3Spec.secret_access_key || ''" @update:model-value="value => s3Spec.secret_access_key = value"/>
Expand Down

0 comments on commit 1b64824

Please sign in to comment.