We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e3f471 commit daee584Copy full SHA for daee584
Orange/widgets/utils/domaineditor.py
@@ -313,7 +313,7 @@ def numbers_are_round(var, col_data):
313
col_data = self._to_column(col_data, is_sparse)
314
elif tpe == StringVariable:
315
var = tpe.make(name)
316
- if type(orig_var) == DiscreteVariable:
+ if type(orig_var) in [DiscreteVariable, TimeVariable]:
317
col_data = [orig_var.repr_val(x) if not np.isnan(x) else ""
318
for x in self._iter_vals(col_data)]
319
elif type(orig_var) == ContinuousVariable:
0 commit comments