Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions website/client/src/components/challenges/challengeModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@keydown.down="autoCompleteMixinSelectNextAutocomplete($event)"
@keypress.enter="autoCompleteMixinSelectAutocomplete($event)"
@keydown.esc="autoCompleteMixinHandleEscape($event)"
>
></input>

Check failure on line 28 in website/client/src/components/challenges/challengeModal.vue

View workflow job for this annotation

GitHub Actions / lint (21.x)

Parsing error: x-invalid-end-tag
</div>
<div class="form-group">
<label>
Expand All @@ -44,7 +44,7 @@
@keydown.down="autoCompleteMixinSelectNextAutocomplete($event)"
@keypress.enter="autoCompleteMixinSelectAutocomplete($event)"
@keydown.esc="autoCompleteMixinHandleEscape($event)"
>
></input>

Check failure on line 47 in website/client/src/components/challenges/challengeModal.vue

View workflow job for this annotation

GitHub Actions / lint (21.x)

Parsing error: x-invalid-end-tag
</div>
<div class="form-group">
<label>
Expand Down Expand Up @@ -179,9 +179,6 @@
</button>
</div>
</div>
<!-- @TODO: Implement in V2 .form-grouplabel
strong(v-once) {{$t('endDate')}}
b-form-input.end-date-input-->
<div
v-if="creating"
class="form-group"
Expand Down
5 changes: 3 additions & 2 deletions website/client/src/components/groups/groupFormModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
<label>
<strong v-once>{{ $t('name') }} *</strong>
</label>
<b-form-input
<input
class="form-control"
v-model="workingGroup.name"
type="text"
:placeholder="isParty ? $t('newPartyPlaceholder') : $t('newGuildPlaceholder')"
/>
></input>

Check failure on line 18 in website/client/src/components/groups/groupFormModal.vue

View workflow job for this annotation

GitHub Actions / lint (21.x)

Parsing error: x-invalid-end-tag
</div>
<div class="form-group">
<label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
>
<b-dropdown-header>
<div class="mb-2 search-input-wrapper">
<b-form-input
<input

Check failure on line 13 in website/client/src/components/tasks/modal-controls/selectMulti.vue

View workflow job for this annotation

GitHub Actions / lint (21.x)

Disallow self-closing on HTML void elements (<input/>)
class="form-control"
ref="searchInput"
v-model="search"
type="text"
Expand All @@ -22,7 +23,7 @@
@keydown.down="autoCompleteMixinSelectNextAutocomplete($event)"
@keydown.enter="searchEnterHandler($event)"
@keydown.esc="searchEscHandler($event)"
/>
/></input>

Check failure on line 26 in website/client/src/components/tasks/modal-controls/selectMulti.vue

View workflow job for this annotation

GitHub Actions / lint (21.x)

Parsing error: x-invalid-end-tag
<emoji-auto-complete
ref="emojiAutocomplete"
:text="search"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@
>
<b-dropdown-header>
<div class="mb-2">
<b-form-input
<input
class="form-control"
v-model="search"
type="text"
:placeholder="searchPlaceholder"
@keyup.enter="handleSubmit"
/>
></input>

Check failure on line 20 in website/client/src/components/tasks/modal-controls/selectSingle.vue

View workflow job for this annotation

GitHub Actions / lint (21.x)

Parsing error: x-invalid-end-tag
</div>
</b-dropdown-header>
<template #button-content>
Expand Down
6 changes: 0 additions & 6 deletions website/client/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ import {
ModalPlugin,
DropdownPlugin,
PopoverPlugin,
FormPlugin,
FormInputPlugin,
FormRadioPlugin,
TooltipPlugin,
NavbarPlugin,
CollapsePlugin,
Expand Down Expand Up @@ -38,9 +35,6 @@ Vue.use(StoreModule);
Vue.use(ModalPlugin);
Vue.use(DropdownPlugin);
Vue.use(PopoverPlugin);
Vue.use(FormPlugin);
Vue.use(FormInputPlugin);
Vue.use(FormRadioPlugin);
Vue.use(TooltipPlugin);
Vue.use(NavbarPlugin);
Vue.use(CollapsePlugin);
Expand Down
Loading