Browse Source

keep single quote from original doc.

pull/18106/head
linch90 3 years ago
parent
commit
e99366fe68
  1. 4
      docs/en/UI/Angular/Data-Table-Column-Extensions.md

4
docs/en/UI/Angular/Data-Table-Column-Extensions.md

@ -300,14 +300,14 @@ export function reorderUserContributors(
) {
// drop email node
const emailPropNode = propList.dropByValue(
"AbpIdentity::EmailAddress",
'AbpIdentity::EmailAddress',
(prop, text) => prop.text === text
);
// add it back after phoneNumber
propList.addAfter(
emailPropNode.value,
"phoneNumber",
'phoneNumber',
(value, name) => value.name === name
);
}

Loading…
Cancel
Save