[CodeFactor] Apply fixes

This commit is contained in:
codefactor-io 2023-11-27 03:00:29 +00:00
parent e57856d328
commit 705b8fa292
No known key found for this signature in database
GPG key ID: B66B2D63282C190F
3 changed files with 12 additions and 6 deletions

View file

@ -96,6 +96,5 @@ function getMaidenheadDistance(dxGrid) {
<!-- END OF HEARD STATIONS TABLE --> <!-- END OF HEARD STATIONS TABLE -->
</div> </div>
</div> </div>
</template> </template>

View file

@ -83,6 +83,5 @@ function getMaidenheadDistance(dxGrid) {
<!-- END OF HEARD STATIONS TABLE --> <!-- END OF HEARD STATIONS TABLE -->
</div> </div>
</div> </div>
</template> </template>

View file

@ -202,7 +202,9 @@ export default {
href="#list-waterfall" href="#list-waterfall"
role="tab" role="tab"
aria-controls="list-waterfall" aria-controls="list-waterfall"
v-bind:class="{ active: settings.local.spectrum === 'waterfall' }" v-bind:class="{
active: settings.local.spectrum === 'waterfall',
}"
@click="selectStatsControl($event)" @click="selectStatsControl($event)"
><strong><i class="bi bi-water"></i></strong ><strong><i class="bi bi-water"></i></strong
></a> ></a>
@ -213,7 +215,9 @@ export default {
href="#list-scatter" href="#list-scatter"
role="tab" role="tab"
aria-controls="list-scatter" aria-controls="list-scatter"
v-bind:class="{ active: settings.local.spectrum === 'scatter' }" v-bind:class="{
active: settings.local.spectrum === 'scatter',
}"
@click="selectStatsControl($event)" @click="selectStatsControl($event)"
><strong><i class="bi bi-border-outer"></i></strong ><strong><i class="bi bi-border-outer"></i></strong
></a> ></a>
@ -352,7 +356,9 @@ export default {
<div class="tab-content" id="nav-stats-tabContent"> <div class="tab-content" id="nav-stats-tabContent">
<div <div
class="tab-pane fade" class="tab-pane fade"
v-bind:class="{ 'show active': settings.local.spectrum === 'waterfall' }" v-bind:class="{
'show active': settings.local.spectrum === 'waterfall',
}"
id="list-waterfall" id="list-waterfall"
role="stats_tabpanel" role="stats_tabpanel"
aria-labelledby="list-waterfall-list" aria-labelledby="list-waterfall-list"
@ -366,7 +372,9 @@ export default {
</div> </div>
<div <div
class="tab-pane fade" class="tab-pane fade"
v-bind:class="{ 'show active': settings.local.spectrum === 'scatter' }" v-bind:class="{
'show active': settings.local.spectrum === 'scatter',
}"
id="list-scatter" id="list-scatter"
role="tabpanel" role="tabpanel"
aria-labelledby="list-scatter-list" aria-labelledby="list-scatter-list"