code refactor
This commit is contained in:
@@ -409,7 +409,6 @@ export default {
|
||||
},
|
||||
submit() {
|
||||
const self = this;
|
||||
const router = self.f7router;
|
||||
|
||||
const problemMessage = self.inputEmptyProblemMessage || self.inputInvalidProblemMessage;
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr v-for="idx in (loading && noAvailableTag ? [1, 2, 3] : [])">
|
||||
<tr :key="itemIdx" v-for="itemIdx in (loading && noAvailableTag ? [ 1, 2, 3 ] : [])">
|
||||
<td class="px-0" colspan="2">
|
||||
<v-skeleton-loader type="text" :loading="true"></v-skeleton-loader>
|
||||
</td>
|
||||
|
||||
@@ -99,7 +99,8 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="idx in (loadingSession && (!sessions || sessions.length < 1) ? [1, 2, 3] : [])">
|
||||
<tr :key="itemIdx"
|
||||
v-for="itemIdx in (loadingSession && (!sessions || sessions.length < 1) ? [ 1, 2, 3 ] : [])">
|
||||
<td class="px-0" colspan="4">
|
||||
<v-skeleton-loader type="text" :loading="true"></v-skeleton-loader>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user