mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 21:14:23 +00:00
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
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:
parent
3abfe46464
commit
028b545374
4 changed files with 5 additions and 5 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue