Compare commits

..

No commits in common. "1b504a1653d044046c4aa66e7766b32e25d7d126" and "85c61ca802015c736a0a5b50304b0833a6af1747" have entirely different histories.

2 changed files with 10 additions and 6 deletions

View File

@ -173,10 +173,12 @@ const toolStore = useToolState()
//
const escapeHtmlQuotes = (str) => {
// replace,
const regex1 = /\\+/g; //
let result = str.replace(regex1, '\\');
return str
return result;
//
// return str.replace(/(<[^>]+>)/g, function (match) {
// return match.replace(/"/g, '\\"')
// })
}
const pollingST = ref(null) //

View File

@ -521,10 +521,12 @@ const tableRadioChange = (e) => {
//
const escapeHtmlQuotes = (str) => {
// replace,
const regex1 = /\\+/g; //
let result = str.replace(regex1, '\\');
return str
return result;
//
// return str.replace(/(<[^>]+>)/g, function (match) {
// return match.replace(/"/g, '\\"')
// })
}
//#region