Skip to content

Commit

Permalink
Merge pull request #51 from grycap/dev-slangarita
Browse files Browse the repository at this point in the history
error fix: bucket in firefox
  • Loading branch information
SergioLangaritaBenitez authored Sep 14, 2023
2 parents e379086 + 876c085 commit a9d0283
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/components/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ export default {
},

bucketExistCall(params,callBackHandler){
this.minioClient.bucketExists(params.name, function(err, exists) {
callBackHandler('success')
/*this.minioClient.bucketExists(params.name, function(err, exists) {
if (err){
callBackHandler(err)
window.getApp.$emit('APP_SHOW_SNACKBAR', {
Expand All @@ -389,7 +390,7 @@ export default {
callBackHandler('success')
}
})
})*/
},

getBucketFilesCall(params, callBackHandler){
Expand Down
2 changes: 1 addition & 1 deletion src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


<v-form v-if= "env.deploy_container == 'false'" >
<v-text-field append-icon="language" name="password" label="Endpoint" id="password" type="text"
<v-text-field append-icon="language" name="endpoint" label="Endpoint" id="endpoint" type="text"
v-model="model.endpoint" :hide-details=true></v-text-field>
<div class="text-right">
<span style="color:red; font-size:10px;">Required</span>
Expand Down

0 comments on commit a9d0283

Please sign in to comment.