Skip to content

Commit

Permalink
Add missing css class (former id)
Browse files Browse the repository at this point in the history
Signed-off-by: Jérôme Herbinet <[email protected]>

Add missing div id

Signed-off-by: Jérôme Herbinet <[email protected]>

Replace "guests-list" id with class

Signed-off-by: Jérôme Herbinet <[email protected]>
Co-Authored-By: Pytal <[email protected]>
  • Loading branch information
Jerome-Herbinet and Pytal committed Aug 20, 2024
1 parent 351d47b commit f34206a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/GuestList.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<NcSettingsSection :name="t('guests', 'Guests accounts')">
<div v-if="loaded && !error">
<div class="guests-list" v-if="loaded && !error">

Check warning on line 3 in src/components/GuestList.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Attribute "v-if" should go before "class"
<table v-if="guests.length" class="table">
<thead>
<tr>
Expand Down Expand Up @@ -121,7 +121,7 @@ export default {
</script>

<style lang="scss" scoped>
#guests-list {
.guests-list {
padding: 20px 0 0;
table {
Expand Down

0 comments on commit f34206a

Please sign in to comment.