[gnome-ostree] repoweb: Fix bad variable ref
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-ostree] repoweb: Fix bad variable ref
- Date: Sat, 15 Dec 2012 22:54:55 +0000 (UTC)
commit 5c511345d525c3188b4ff7ee5e1cc614d70f0f7d
Author: Colin Walters <walters verbum org>
Date: Sat Dec 15 17:54:52 2012 -0500
repoweb: Fix bad variable ref
qa/repoweb/repoweb.js | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/qa/repoweb/repoweb.js b/qa/repoweb/repoweb.js
index fc3abfb..4cbc8ae 100644
--- a/qa/repoweb/repoweb.js
+++ b/qa/repoweb/repoweb.js
@@ -127,8 +127,8 @@ function renderBuild(container, build) {
a.appendChild(p);
var status = build['build-status'];
if (status)
- text += ": " + status['description'];
- p.appendChild(document.createTextNode(text));
+ status += ": " + status['description'];
+ p.appendChild(document.createTextNode(status));
} else {
var p = document.createElement('span');
a.appendChild(p);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]