Skip to content
Snippets Groups Projects
Commit 7f6e3ff2 authored by Zara Mudassar's avatar Zara Mudassar
Browse files

Id errors fixed

parent 8ed1e689
No related branches found
No related tags found
1 merge request!28connected to backend
Pipeline #176716 passed
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<div class="mb-6" :class="{ error: v$.item.title.$errors.length }"> <div class="mb-6" :class="{ error: v$.item.title.$errors.length }">
<label <label
class="block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300" class="block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300"
id="addressLabel" id="titleLabel"
>Tittel</label >Tittel</label
> >
<input <input
...@@ -162,7 +162,6 @@ ...@@ -162,7 +162,6 @@
<div class="mb-6" :class="{ error: v$.item.address.$errors.length }"> <div class="mb-6" :class="{ error: v$.item.address.$errors.length }">
<label <label
class="block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300" class="block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300"
id="titleLabel"
>Adresse</label> >Adresse</label>
<input <input
type="text" type="text"
...@@ -381,9 +380,6 @@ export default { ...@@ -381,9 +380,6 @@ export default {
this.item.images.push(URL.createObjectURL(event.target.files[0])); this.item.images.push(URL.createObjectURL(event.target.files[0]));
console.log("antall bilder: " + this.item.images.length); console.log("antall bilder: " + this.item.images.length);
}, },
},
beforeMount() {
console.log("Token: " + this.$store.state.user.token);
} }
}; };
</script> </script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment