diff --git a/src/PolicyEditor/index.jsx b/src/PolicyEditor/index.jsx
index 9857faef..e8ca6c58 100644
--- a/src/PolicyEditor/index.jsx
+++ b/src/PolicyEditor/index.jsx
@@ -159,6 +159,9 @@ export class PolicyEditor extends Component {
if (policy.files.ignoreDotFiles) {
policy.files.ignoreDotFiles = removeEmpty(policy.files.ignoreDotFiles)
}
+ if (policy.files.ignoreExtendedAttributes) {
+ policy.files.ignoreExtendedAttributes = removeEmpty(policy.files.ignoreExtendedAttributes)
+ }
}
if (policy.compression) {
@@ -316,6 +319,11 @@ export class PolicyEditor extends Component {
{RequiredBoolean(this, "", "policy.files.noParentDotFiles")}
+
+
+ {StringList(this, "policy.files.ignoreExtendedAttributes")}
+ {EffectiveTextAreaValue(this, "files.ignoreExtendedAttributes")}
+
{OptionalBoolean(this, null, "policy.files.ignoreCacheDirs", "inherit from parent")}