aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-03-22 13:36:39 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-03-22 13:37:43 +0300
commitf7327a0b3cd6723cb289819bad1d664cfd5d6618 (patch)
tree1345a9cdbc3c96d760a75e0bc785a5dfdcf00714
parent783a28514bc13901f39d23e3a64c3869e796a3db (diff)
Fix Build Configurations page to add tenant to links
-rw-r--r--mod/mod-build-configs.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/mod-build-configs.cxx b/mod/mod-build-configs.cxx
index 6731b28..126c1d8 100644
--- a/mod/mod-build-configs.cxx
+++ b/mod/mod-build-configs.cxx
@@ -89,9 +89,9 @@ handle (request& rq, response& rs)
<< DIV_HEADER (options_->logo (), options_->menu (), root, tenant)
<< DIV(ID="content");
- auto url = [&root] (const string& cls)
+ auto url = [&root, this] (const string& cls)
{
- string r (root.string () + "?build-configs");
+ string r (tenant_dir (root, tenant).string () + "?build-configs");
if (cls != "all")
{