chore(refactor): removed absolute codes

This commit is contained in:
Liyas Thomas
2020-12-17 15:30:02 +05:30
parent 29a4dee91b
commit 1d4576c7fd
7 changed files with 8 additions and 38 deletions

View File

@@ -39,7 +39,6 @@
<button
class="icon"
@click="copyRequestCode"
id="copyRequestCode"
ref="copyRequestCode"
v-tooltip="$t('copy_code')"
>

View File

@@ -11,7 +11,7 @@
</div>
</div>
<div slot="body" class="flex flex-col">
<textarea id="import-curl" autofocus rows="8" :placeholder="$t('enter_curl')"></textarea>
<textarea autofocus rows="8" :placeholder="$t('enter_curl')"></textarea>
</div>
<div slot="footer">
<div class="row-wrapper">

View File

@@ -12,7 +12,7 @@
</div>
<div slot="body" class="flex flex-col">
<div class="row-wrapper">
<label for="token-list">{{ $t("token_list") }}</label>
<label>{{ $t("token_list") }}</label>
<div v-if="tokens.length != 0">
<button
class="icon"
@@ -23,7 +23,7 @@
</button>
</div>
</div>
<ul id="token-list" v-for="(token, index) in tokens" :key="index">
<ul v-for="(token, index) in tokens" :key="index">
<li>
<input
:placeholder="`name ${index + 1}`"