Skip to content

Commit 3689b72

Browse files
authored
changed default types for date and time column
1 parent 90931a3 commit 3689b72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Columns/TableViewDateColumn.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public override FrameworkElement GenerateEditingElement(TableViewCell cell, obje
103103
}
104104
}
105105

106-
return default;
106+
return typeof(DateTimeOffset);
107107
}
108108

109109
/// <summary>

src/Columns/TableViewTimeColumn.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public override FrameworkElement GenerateEditingElement(TableViewCell cell, obje
9797
}
9898
}
9999

100-
return default;
100+
return typeof(TimeSpan);
101101
}
102102

103103
/// <summary>

0 commit comments

Comments
 (0)