From 1007735364cd5031589f8b5f60c19a75d193aa75 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 26 Feb 2013 18:55:59 +0100 Subject: [PATCH] Render links to changed input builds Also, use get_column('dependency') instead of dependency.id to prevent an expensive row fetch. --- src/root/common.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/root/common.tt b/src/root/common.tt index 6a8b576c..f1b1d9cb 100644 --- a/src/root/common.tt +++ b/src/root/common.tt @@ -374,7 +374,7 @@ BLOCK renderShortEvalInput; [% ELSIF input.type == "git" %] [% input.revision.substr(0, 7) %] [% ELSIF input.type == "build" || input.type == "sysbuild" %] - [% input.dependency.id %] + [% input.get_column('dependency') %] [% ELSE %] [% input.revision %] [% END;