mirror of
https://github.com/jpros/tacticalrmm-web.git
synced 2026-01-20 03:50:21 +00:00
fix installer regex to include numbers
This commit is contained in:
@@ -148,11 +148,11 @@ export default {
|
||||
const clientStripped = this.client
|
||||
.replace(/\s/g, "")
|
||||
.toLowerCase()
|
||||
.replace(/([^a-zA-Z]+)/g, "");
|
||||
.replace(/([^a-zA-Z0-9]+)/g, "");
|
||||
const siteStripped = this.site
|
||||
.replace(/\s/g, "")
|
||||
.toLowerCase()
|
||||
.replace(/([^a-zA-Z]+)/g, "");
|
||||
.replace(/([^a-zA-Z0-9]+)/g, "");
|
||||
|
||||
const data = {
|
||||
installMethod: this.installMethod,
|
||||
|
||||
Reference in New Issue
Block a user