Lines 25-30
Link Here
|
25 |
</fieldset> |
25 |
</fieldset> |
26 |
<fieldset class="rows"> |
26 |
<fieldset class="rows"> |
27 |
<legend>{{ $__("Attributes") }}</legend> |
27 |
<legend>{{ $__("Attributes") }}</legend> |
|
|
28 |
<div |
29 |
v-if="processing.processing_id" |
30 |
id="alert-removal" |
31 |
class="dialog message" |
32 |
> |
33 |
{{ |
34 |
$__( |
35 |
"Be careful removing attribute to this processing, the items using it will be impacted as well!" |
36 |
) |
37 |
}} |
38 |
</div> |
28 |
<fieldset |
39 |
<fieldset |
29 |
:id="`attribute_${counter}`" |
40 |
:id="`attribute_${counter}`" |
30 |
class="rows" |
41 |
class="rows" |
Lines 246-253
export default {
Link Here
|
246 |
} |
257 |
} |
247 |
|
258 |
|
248 |
processing.attributes = processing.attributes.map( |
259 |
processing.attributes = processing.attributes.map( |
249 |
({ processing_id, processing_attribute_id, ...keepAttrs }) => |
260 |
({ processing_id, ...keepAttrs }) => keepAttrs |
250 |
keepAttrs |
|
|
251 |
) |
261 |
) |
252 |
|
262 |
|
253 |
const client = APIClient.preservation |
263 |
const client = APIClient.preservation |
Lines 284-286
export default {
Link Here
|
284 |
name: "SettingsProcessingsFormAdd", |
294 |
name: "SettingsProcessingsFormAdd", |
285 |
} |
295 |
} |
286 |
</script> |
296 |
</script> |
287 |
- |
297 |
|
|
|
298 |
<style> |
299 |
#alert-removal { |
300 |
margin: 0; |
301 |
} |
302 |
</style> |