Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CloWM UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computational Metagenomics
CloWM
CloWM UI
Merge requests
!23
Resolve "Refactor buckets into pinia store"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Refactor buckets into pinia store"
feature/29-refactor-buckets-into-pinia-store
into
development
Overview
0
Commits
4
Pipelines
1
Changes
3
Merged
Daniel Göbel
requested to merge
feature/29-refactor-buckets-into-pinia-store
into
development
2 years ago
Overview
0
Commits
4
Pipelines
1
Changes
3
Expand
Closes
#29 (closed)
#28 (closed)
Edited
2 years ago
by
Daniel Göbel
0
0
Merge request reports
Viewing commit
40e7e605
Prev
Next
Show latest version
3 files
+
48
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
Verified
40e7e605
Improve UI in various cases and add changes in CHANGELOG.md
· 40e7e605
Daniel Göbel
authored
2 years ago
#29
src/components/BucketView.vue
+
25
−
4
Options
@@ -687,12 +687,33 @@ watch(
<!-- Body -->
<div
class=
"pt-3"
>
<!-- If bucket not found -->
<div
v-if=
"objectState.bucketNotFoundError"
>
<p>
Bucket not found
</p>
<div
v-if=
"objectState.bucketNotFoundError"
class=
"text-center fs-2 mt-5"
>
<bootstrap-icon
icon=
"search"
class=
"mb-3"
:width=
"64"
:height=
"64"
style=
"color: var(--bs-secondary)"
fill=
"currentColor"
/>
<p>
Bucket
<i>
{{
props
.
bucketName
}}
</i>
not found
</p>
</div>
<!-- If no permission for bucket -->
<div
v-else-if=
"objectState.bucketPermissionError"
>
<p>
No permission for this bucket
</p>
<div
v-else-if=
"objectState.bucketPermissionError"
class=
"text-center fs-2 mt-5"
>
<bootstrap-icon
icon=
"folder-x"
class=
"mb-3"
:width=
"64"
:height=
"64"
style=
"color: var(--bs-secondary)"
fill=
"currentColor"
/>
<p>
You don't have permission for this bucket
</p>
</div>
<!-- Show content of bucket -->
<div
v-else
>
Loading