mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Converting all files stored as CRLF in git to be stored as LF
LF is the git default and all new files are stored as such. Old files from the hg to git conversion however were moved over as CRLF.
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
namespace Orchard.Fields.Settings {
|
||||
public class NumericFieldSettings {
|
||||
public string Hint { get; set; }
|
||||
public bool Required { get; set; }
|
||||
public int Scale { get; set; }
|
||||
public decimal? Minimum { get; set; }
|
||||
public decimal? Maximum { get; set; }
|
||||
|
||||
public NumericFieldSettings() {
|
||||
Scale = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
namespace Orchard.Fields.Settings {
|
||||
public class NumericFieldSettings {
|
||||
public string Hint { get; set; }
|
||||
public bool Required { get; set; }
|
||||
public int Scale { get; set; }
|
||||
public decimal? Minimum { get; set; }
|
||||
public decimal? Maximum { get; set; }
|
||||
|
||||
public NumericFieldSettings() {
|
||||
Scale = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user