Fixing backend_code and backend_status

Change-Id: I16c78aa64582488267ed3e1227b54740e76bdfc0
diff --git a/src/app/core/debug/debug-model.html b/src/app/core/debug/debug-model.html
index cf74189..078e041 100644
--- a/src/app/core/debug/debug-model.html
+++ b/src/app/core/debug/debug-model.html
@@ -13,9 +13,8 @@
 See the License for the specific language governing permissions and
 limitations under the License.
 -->
-
-<div class="row" ng-if="vm.ngModel[field]" ng-repeat="field in vm.debugFields">
-    <div class="col-xs-12">
+<div class="row" ng-repeat="field in vm.debugFields">
+    <div class="col-xs-12" ng-if="vm.ngModel[field] !== undefined">
         <label>{{vm.toLabel(field)}}</label>
         <pre>{{vm.parseField(field, vm.ngModel[field])}}</pre>
     </div>