Change readme links & update news to NOT use the translated Hi as a test
Some checks are pending
Build and Push Docker Image / build-and-push (push) Waiting to run

& updated the draggable window to remove the testing state. (I know
testing in prod is bad.)
This commit is contained in:
yuanhau 2025-06-07 01:25:45 +08:00
parent 3abfe46464
commit 028b545374
4 changed files with 5 additions and 5 deletions

View file

@ -33,11 +33,11 @@ const titleOrg = computed(() => props.title);
const titleMaxRegexDetection = /[a-zA-Z0-9]{,10}/;
const title = ref("Draggable Window");
onMounted(() => {
if (!titleMaxRegexDetection.test(titleOrg)) {
if (!titleMaxRegexDetection.test(titleOrg.value)) {
console.log("Max Detected!!");
} else {
title.value = titleOrg;
}
title.value = titleOrg.value;
});
const isDragging = ref(false);