Skip to content

Commit

Permalink
fix: dumb eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tankerkiller125 committed Oct 19, 2024
1 parent be88954 commit 85f2e9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/components/Form/TextArea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
});
const value = useVModel(props, "modelValue", emit);
const valueLen = computed(() => {
computed(() => {
return value.value ? value.value.length : 0;
});
</script>
2 changes: 1 addition & 1 deletion frontend/components/Item/View/Table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
</label>
<ul tabindex="0" class="dropdown-content rounded-box flex w-64 flex-col gap-2 bg-base-100 p-2 pl-3 shadow">
<li>Headers:</li>
<li v-for="(h, i) in headers" class="flex flex-row items-center gap-1">
<li v-for="(h, i) in headers" :key="h.value" class="flex flex-row items-center gap-1">
<button
class="btn btn-square btn-ghost btn-xs"
:class="{
Expand Down

0 comments on commit 85f2e9f

Please sign in to comment.