From c46241555c882a7a5d7e3325e2cd793aaeb93c36 Mon Sep 17 00:00:00 2001 From: James Kolpack Date: Thu, 6 Dec 2012 20:09:47 -0500 Subject: [PATCH] Hide VehiclePreviousLog from view --- Web/Models/Log.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Web/Models/Log.cs b/Web/Models/Log.cs index 54ab511..a267e7b 100644 --- a/Web/Models/Log.cs +++ b/Web/Models/Log.cs @@ -70,10 +70,10 @@ namespace MileageTraker.Web.Models [HiddenInput] public string UserAgent { get; set; } - [HiddenInput] + [HiddenInput(DisplayValue = false)] public int? VehiclePreviousLogId { get; set; } - - [HiddenInput] + + [HiddenInput(DisplayValue = false)] public virtual Log VehiclePreviousLog { get; set; } public Log()