missing empty lines

This commit is contained in:
Adrian Hopek 2022-05-11 10:34:11 +02:00
parent f50da3b79c
commit 5dea3293c6
5 changed files with 5 additions and 5 deletions

View File

@ -85,4 +85,4 @@ export default function () {
technologyLevels, technologyLevels,
languageLevels, languageLevels,
} }
} }

View File

@ -65,4 +65,4 @@ const filteredItems = computed(() =>
? props.items ? props.items
: props.items.filter((item) => item.toLowerCase().includes(query.value.toLowerCase())), : props.items.filter((item) => item.toLowerCase().includes(query.value.toLowerCase())),
) )
</script> </script>

View File

@ -110,4 +110,4 @@ function addItem() {
function removeItem(index) { function removeItem(index) {
emit('removeItem', index) emit('removeItem', index)
} }
</script> </script>

View File

@ -43,4 +43,4 @@ const selectedValue = computed({
const currentIndex = computed(() => props.levels.findIndex((level) => level.level === selectedValue.value.level)) const currentIndex = computed(() => props.levels.findIndex((level) => level.level === selectedValue.value.level))
</script> </script>

View File

@ -89,4 +89,4 @@ const filteredItems = computed(() =>
? props.items ? props.items
: props.items.filter((item) => item.toLowerCase().includes(query.value.toLowerCase())), : props.items.filter((item) => item.toLowerCase().includes(query.value.toLowerCase())),
) )
</script> </script>