1
0
Fork 0
mirror of synced 2024-07-01 04:21:06 +12:00

Merge pull request #2442 from mslourens/support_replace_all_older_browsers

Replace 'replaceAll' with 'replace' and a regular expression
This commit is contained in:
Martin McKeaveney 2021-08-24 10:23:07 +01:00 committed by GitHub
commit 3186e8167c
3 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@
// By deleting all _rev properties we can avoid this and increase
// performance.
$: json = JSON.stringify(previewData)
$: strippedJson = json.replaceAll(/"_rev":\s*"[^"]+"/g, `"_rev":""`)
$: strippedJson = json.replace(/"_rev":\s*"[^"]+"/g, `"_rev":""`)
// Update the iframe with the builder info to render the correct preview
const refreshContent = message => {

View file

@ -84,7 +84,7 @@
if (!event.detail.startsWith("/")) {
route = "/" + event.detail
}
route = route.replaceAll(" ", "-")
route = route.replace(/ +/g, "-")
}
</script>

View file

@ -37,7 +37,7 @@
key: "routing.route",
label: "Route",
control: Input,
parser: val => val.replaceAll(" ", "-"),
parser: val => val.replace(/ +/g, "-"),
},
{ key: "routing.roleId", label: "Access", control: RoleSelect },
{ key: "layoutId", label: "Layout", control: LayoutSelect },