Compare commits

..

No commits in common. "3603c4e0f228544e7c260f488f4462a1306de19b" and "a2c962e94db3a02f36deb8ce48e5dbe1c1595b8d" 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