Skip to content
This repository was archived by the owner on Feb 10, 2024. It is now read-only.

Commit 54488db

Browse files
authored
Merge pull request #160 from rasmuseeg/patch-1
Added implementation of Alias property
2 parents c19a93f + 6578875 commit 54488db

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/Our.Umbraco.DocTypeGridEditor/Models/DetachedPublishedProperty.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ public IPublishedPropertyType PropertyType
8585
return _propertyType;
8686
}
8787
}
88-
public string Alias { get; }
88+
public string Alias
89+
{
90+
get
91+
{
92+
return _propertyType.Alias;
93+
}
94+
}
8995
}
90-
}
96+
}

0 commit comments

Comments
 (0)