Skip to content

Commit

Permalink
Merge pull request #92 from grycap/dev-gmolto-ux
Browse files Browse the repository at this point in the history
Improved Namings
  • Loading branch information
SergioLangaritaBenitez committed Jan 11, 2024
2 parents a53e975 + effde8d commit fa89d6f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions src/components/forms/FunctionForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@
<v-tab
:href="`#tab-onedata`"
>
ONE DATA
ONEDATA
</v-tab>
<v-tab
:href="`#tab-s3`"
Expand All @@ -877,7 +877,7 @@
<v-tab
:href="`#tab-dcache`"
>
dcache
DCACHE
</v-tab>
</v-tabs>

Expand Down Expand Up @@ -1035,7 +1035,7 @@
:append-icon="showMinioSecretKey ? 'visibility_off' : 'visibility'"
:type="showMinioSecretKey ? 'text' : 'password'"
:counter="200"
label="SECRET KEY"
label="SECRET ACCESS KEY"
@click:append="showMinioSecretKey = !showMinioSecretKey"
></v-text-field>
</v-flex>
Expand All @@ -1048,7 +1048,7 @@
:append-icon="showMinioAccessKey ? 'visibility_off' : 'visibility'"
:type="showMinioAccessKey ? 'text' : 'password'"
:counter="200"
label="ACCESS KEY"
label="ACCESS KEY ID"
@click:append="showMinioAccessKey = !showMinioAccessKey"
></v-text-field>
</v-flex>
Expand Down Expand Up @@ -1080,8 +1080,8 @@
<v-list-tile-title class="pad-down-def">ID: {{key}}</v-list-tile-title>
<v-list-tile-title class="pad-down-def">ENDPOINT: {{id.endpoint}}</v-list-tile-title>
<v-list-tile-title class="pad-down-def">REGION: {{id.region}}</v-list-tile-title>
<v-list-tile-title class="pad-down-def">SECRET KEY: <span class="hide_text">*********</span></v-list-tile-title>
<v-list-tile-title class="pad-down-def">ACCESS KEY: <span class="hide_text">*********</span></v-list-tile-title>
<v-list-tile-title class="pad-down-def">SECRET ACCESS KEY: <span class="hide_text">*********</span></v-list-tile-title>
<v-list-tile-title class="pad-down-def">ACCESS KEY ID: <span class="hide_text">*********</span></v-list-tile-title>
<v-list-tile-title class="pad-down-def">VERIFY: {{id.verify}}</v-list-tile-title>
<!-- <v-list-tile-title>{{key}}</v-list-tile-title> -->
</v-list-tile-content>
Expand Down Expand Up @@ -1133,7 +1133,7 @@
:append-icon="showS3AccessKey ? 'visibility_off' : 'visibility'"
:type="showS3AccessKey ? 'text' : 'password'"
:counter="200"
label="ACCESS KEY"
label="ACCESS KEY ID"
@click:append="showS3AccessKey = !showS3AccessKey"
></v-text-field>
</v-flex>
Expand All @@ -1146,7 +1146,7 @@
:append-icon="showS3SecretKey ? 'visibility_off' : 'visibility'"
:type="showS3SecretKey ? 'text' : 'password'"
:counter="200"
label="SECRET KEY"
label="SECRET ACCESS KEY"
@click:append="showS3SecretKey = !showS3SecretKey"
></v-text-field>
</v-flex>
Expand Down
2 changes: 1 addition & 1 deletion src/views/Invoke.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<input type="file" id="files" ref="files" @change="selectFile"/>
</v-flex>
<v-btn color="green lighten-2" dark @click="invokeSynchronous()" >
Invocation
Run
</v-btn>
</v-flex>
<v-divider > </v-divider>
Expand Down
4 changes: 2 additions & 2 deletions src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
<v-text-field append-icon="lock" name="password" label="Password" id="password" type="password"
v-model="model.password"></v-text-field>
<div class="text-center">
<v-btn color="teal" dark @click.native="login()" :loading="loading">Basic auth</v-btn>
<v-btn color="teal" dark @click.native="login()" :loading="loading">Sign in</v-btn>
</div>
</v-form>
<v-divider class='mt-5 mb-5'></v-divider>

<div class="text-center">
<v-btn color="indigo" dark @click.native="oscar_ui_egi()" :loading="loading_egi">EGI Check-in</v-btn>
<v-btn color="indigo" dark @click.native="oscar_ui_egi()" :loading="loading_egi">Sign in via EGI Check-in</v-btn>
</div>

</v-card-text>
Expand Down

0 comments on commit fa89d6f

Please sign in to comment.