Showing
2 changed files
with
4 additions
and
1 deletions
... | ... | @@ -87,6 +87,7 @@ export default function ExtensionFormHttpDirective($compile, $templateCache, $tr |
87 | 87 | if (index > -1) { |
88 | 88 | scope.converterConfigs.splice(index, 1); |
89 | 89 | } |
90 | + scope.theForm.$setDirty(); | |
90 | 91 | } |
91 | 92 | |
92 | 93 | scope.addConverter = function(converters) { |
... | ... | @@ -99,6 +100,7 @@ export default function ExtensionFormHttpDirective($compile, $templateCache, $tr |
99 | 100 | if (index > -1) { |
100 | 101 | converters.splice(index, 1); |
101 | 102 | } |
103 | + scope.theForm.$setDirty(); | |
102 | 104 | } |
103 | 105 | |
104 | 106 | scope.addAttribute = function(attributes) { |
... | ... | @@ -111,6 +113,7 @@ export default function ExtensionFormHttpDirective($compile, $templateCache, $tr |
111 | 113 | if (index > -1) { |
112 | 114 | attributes.splice(index, 1); |
113 | 115 | } |
116 | + scope.theForm.$setDirty(); | |
114 | 117 | } |
115 | 118 | |
116 | 119 | scope.transformerTypeChange = function(attribute) { | ... | ... |