fix: Clean up dead code and stale domain references across landing + web-app (#189)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
5ee2238604
commit
878d1337df
21 changed files with 2 additions and 263 deletions
|
|
@ -133,7 +133,6 @@ function removeFocus() {
|
|||
}
|
||||
|
||||
function setFocus(_event: MouseEvent) {
|
||||
// console.log("setFocus");
|
||||
if (props.disabled) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -133,10 +133,8 @@ function clickSelect(_event: unknown) {
|
|||
}
|
||||
|
||||
function clickItem(item: { index: number }) {
|
||||
// console.log("item", item);
|
||||
selectedIndex.value = item.index;
|
||||
showList.value = false;
|
||||
// console.log("showList.value", showList.value);
|
||||
// emit('input', item)
|
||||
}
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -38,12 +38,6 @@ onMounted(() => {
|
|||
// resolved = {"test123": 123, "blub": "abc"}
|
||||
});
|
||||
|
||||
// const test = computed(() => {
|
||||
// console.log(instance.value);
|
||||
|
||||
// return instance.value?.parent
|
||||
// })
|
||||
|
||||
//Props
|
||||
interface Props {
|
||||
label: string;
|
||||
|
|
@ -52,9 +46,6 @@ interface Props {
|
|||
const props = defineProps<Props>();
|
||||
|
||||
watch(props, (_newValue, _oldValue) => {
|
||||
// console.log("newValue", newValue);
|
||||
// console.log("instance", instance.value);
|
||||
|
||||
updateTab({
|
||||
uid: instance.value?.uid ?? 0,
|
||||
name: props.name,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue