Fix missing space in rule details

This commit is contained in:
Matej Bačo
2025-06-01 13:28:44 +02:00
parent 9d0dad4afc
commit 2b2da161b5
2 changed files with 2 additions and 2 deletions
@@ -32,7 +32,7 @@
return proxy?.redirectUrl
? 'Redirect to ' + proxy.redirectUrl
: proxy?.deploymentVcsProviderBranch
? 'Deployed from' + proxy.deploymentVcsProviderBranch
? 'Deployed from ' + proxy.deploymentVcsProviderBranch
: 'Active deployment';
};
</script>
@@ -32,7 +32,7 @@
return proxy?.redirectUrl
? 'Redirect to ' + proxy.redirectUrl
: proxy?.deploymentVcsProviderBranch
? 'Deployed from' + proxy.deploymentVcsProviderBranch
? 'Deployed from ' + proxy.deploymentVcsProviderBranch
: 'Active deployment';
};
</script>