🚨 Removing linter warnings

This commit is contained in:
Liyas Thomas
2020-01-15 09:10:14 +05:30
parent c8878aba57
commit 2faf675c0a
9 changed files with 99 additions and 74 deletions

View File

@@ -17,7 +17,11 @@
<div slot="body">
<ul>
<li>
<input type="text" v-model="name" :placeholder="$t('my_new_collection')" />
<input
type="text"
v-model="name"
:placeholder="$t('my_new_collection')"
/>
</li>
</ul>
</div>

View File

@@ -17,7 +17,11 @@
<div slot="body">
<ul>
<li>
<input type="text" v-model="name" :placeholder="$t('my_new_folder')" />
<input
type="text"
v-model="name"
:placeholder="$t('my_new_folder')"
/>
</li>
</ul>
</div>

View File

@@ -1,7 +1,11 @@
<template>
<div class="flex-wrap">
<div>
<button class="icon" @click="selectRequest()" v-tooltip="$t('use_request')">
<button
class="icon"
@click="selectRequest()"
v-tooltip="$t('use_request')"
>
<i class="material-icons">insert_drive_file</i>
<span>{{ request.name }}</span>
</button>

View File

@@ -1,10 +1,5 @@
<template>
<pw-section
class="green"
icon="history"
:label="$t('history')"
ref="history"
>
<pw-section class="green" icon="history" :label="$t('history')" ref="history">
<ul>
<li id="filter-history">
<input
@@ -27,7 +22,9 @@
class="icon"
:class="{ stared: entry.star }"
@click="toggleStar(index)"
v-tooltip="{ content: !entry.star ? $t('add_star') : $t('remove_star') }"
v-tooltip="{
content: !entry.star ? $t('add_star') : $t('remove_star')
}"
>
<i class="material-icons">
{{ entry.star ? "star" : "star_border" }}
@@ -238,7 +235,9 @@
</v-popover>
</div>
<div class="flex-wrap" v-else>
<label for="clear-history-button" class="info">{{ $t("are_you_sure") }}</label>
<label for="clear-history-button" class="info">
{{ $t("are_you_sure") }}
</label>
<div>
<button
class="icon"