Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-12-20 15:09:21 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-20 15:09:21 +0300
commit09b4875c004d2db76b15cb0b32e7a7e623bbfa6f (patch)
treeed34a2d9267c31a22623e37e8cfc0ca009e59e2b /app/assets/javascripts/blob
parent19e00b948726c0f7ca27dd92200493803499a4e1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/blob')
-rw-r--r--app/assets/javascripts/blob/components/blob_header.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/blob/components/blob_header.vue b/app/assets/javascripts/blob/components/blob_header.vue
index 361d736f740..4e47aa99fd8 100644
--- a/app/assets/javascripts/blob/components/blob_header.vue
+++ b/app/assets/javascripts/blob/components/blob_header.vue
@@ -66,7 +66,7 @@ export default {
return !this.hideDefaultActions;
},
isEmpty() {
- return this.blob.rawSize === 0;
+ return this.blob.rawSize === '0';
},
blobSwitcherDocIcon() {
return this.blob.richViewer?.fileType === 'csv' ? 'table' : 'document';