fixes from template
This commit is contained in:
@@ -106,7 +106,8 @@ watch(config, saveConfig, { deep: true });
|
||||
</td>
|
||||
<td>
|
||||
<span v-if="slotTooBig" title="slot duration might be too big">
|
||||
<LucideIcon name="triangle-alert" /> {{ config.duration }} minutes
|
||||
<LucideIcon name="triangle-alert" />
|
||||
{{ config.duration }} minutes
|
||||
</span>
|
||||
<span v-else> {{ config.duration }} minutes </span>
|
||||
</td>
|
||||
@@ -144,13 +145,16 @@ watch(config, saveConfig, { deep: true });
|
||||
></textarea>
|
||||
</td>
|
||||
<td>
|
||||
<button @click="newVegetables"><LucideIcon name="dices" /></button>
|
||||
<button @click="newVegetables">
|
||||
<LucideIcon name="dices" />
|
||||
</button>
|
||||
<br />
|
||||
<span
|
||||
v-if="candidates.length <= 2"
|
||||
title="not enough candidates"
|
||||
>
|
||||
<LucideIcon name="triangle-alert" /> <LucideIcon name="users-round" />
|
||||
<LucideIcon name="triangle-alert" />
|
||||
<LucideIcon name="users-round" />
|
||||
{{ candidates.length }}
|
||||
</span>
|
||||
<span v-else>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
import { computed, onMounted } from "vue";
|
||||
import { computed } from "vue";
|
||||
import * as icons from "lucide-vue-next";
|
||||
|
||||
interface Props {
|
||||
@@ -25,10 +25,6 @@ function kebab2camel(kebab: string): string {
|
||||
.join("");
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
console.log(kebab2camel(props.name));
|
||||
});
|
||||
|
||||
// @ts-expect-error: cannot infer type of all exported data
|
||||
const icon = computed(() => icons[kebab2camel(props.name)]);
|
||||
</script>
|
||||
|
||||
+1
-1
@@ -25,7 +25,7 @@ export function getDataCookie<T extends object>(
|
||||
if (rawCookie.length) {
|
||||
try {
|
||||
const parsedConfig = JSON.parse(rawCookie) as T;
|
||||
return { ...parsedConfig, ...defaultValue };
|
||||
return { ...defaultValue, ...parsedConfig };
|
||||
} catch {
|
||||
/* Empty */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user