mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
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.
14 lines
400 B
Plaintext
14 lines
400 B
Plaintext
@using Orchard.Utility.Extensions
|
|
|
|
@{
|
|
string name = Model.Name;
|
|
string branches = Model.State.Branches;
|
|
var outcomes = String.Join(",", branches == null ? new string[0] : branches.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries).Select(x => "'" + x.Trim() + "'").ToArray());
|
|
}
|
|
|
|
<div title="Merge">
|
|
<div class="merge-branch" ></div>
|
|
@*@name.CamelFriendly()*@
|
|
</div>
|
|
|